octopyid/indonesian-boundaries

This package is abandoned and no longer maintained. No replacement package was suggested.

Indonesian Boundaries

v1.0.7 2022-06-08 01:45 UTC

This package is auto-updated.

Last update: 2023-03-08 03:35:24 UTC


README

License Version Downloads

Indonesian Boundaries

Is a Laravel package that provides a basic map of the country of Indonesia.

Spatial Source

The spatial source I use comes from Badan Pusat Statistik (BPS - Statistics Indonesia).

Disclaimer

Due to the limited time for the maintainer to search for the latest data for each boundary, we are not obliged to make the changes you requested ASAP.

If you have the latest data and want us to update the data we have, please send it to supianidz@octopy.id.

Data can be either JSON or SHP provided it has a region code in its properties.

Requirement

I don't know exactly, but it's been tested on

  • Laravel 8
  • PHP 7.4

Installation

composer require octopyid/indonesian-boundaries:dev-main

php artisan vendor:publish --provider="Octopy\Indonesian\Boundaries\ServiceProvider"

Basic Usage

  • resources/views/map.blade.php
<!doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport"
              content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Map Example</title>
        @boundaryStyles
    </head>
    <body>
        <div id="map" style="height: 990px"></div>

        @boundaryScript

        <script type="text/javascript">
            $boundary.render();
        </script>
    </body>
</html>
  • app/Http/Controllers/MapController.php
<?php

namespace App\Http\Controllers;

use Exception;
use Illuminate\Contracts\View\View;
use Illuminate\Contracts\View\Factory;
use Octopy\Indonesian\Boundaries\Boundary;
use Octopy\Indonesian\Boundaries\Draw\Draw;
use Octopy\Indonesian\Boundaries\Config\Style;
use Illuminate\Contracts\Foundation\Application;

class MapController extends Controller
{
    /**
     * @param  Boundary $boundary
     * @return Application|Factory|View
     * @throws Exception
     */
    public function index(Boundary $boundary)
    {
        $map = $boundary->element('map');

        $map->center(-0.487177, 116.317060);
        $map->draw(function (Draw $draw) {
            # Draw provincial boundaries
            $draw->province([61, 62, 63, 64, 65])->style(function (Style $style) {
                $style->color('#0F0F0F')
                    ->fillColor('#556EE6')
                    ->fillOpacity(0.2);
            });
        });

        return view('map');
    }
}

Credits

License

The MIT License (MIT). Please see License File for more information.