Is a Laravel package that provides a basic map of the country of Indonesia.
The spatial source I use comes from Badan Pusat Statistik (BPS - Statistics Indonesia).
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 [email protected].
Data can be either JSON or SHP provided it has a region code in its properties.
I don't know exactly, but it's been tested on
- Laravel 8
- PHP 7.4
composer require octopyid/indonesian-boundaries:dev-main
php artisan vendor:publish --provider="Octopy\Indonesian\Boundaries\ServiceProvider"
- 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');
}
}
The MIT License (MIT). Please see License File for more information.