Leaflet with geoJSON Polygon

by alfannas

HTML

<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/MarkerCluster.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/MarkerCluster.Default.css">
<script src="https://unpkg.com/[email protected]/dist/leaflet.markercluster.js"></script>
<div id='map'></div>

CSS

#map {
  width: 600px;
  height: 400px;
}

JavaScript

var geoJsonData = {
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "marker-color": "#7e7e7e",
        "marker-size": "medium",
        "marker-symbol": "",
        "title": "kalimantan"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          114.2578125,
          -2.460181181020993
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {},
      "geometry": {
        "type": "Point",
        "coordinates": [
          99.49218749999999,
          2.4601811810210052
        ]
      }
    },
    {
      "type": "Feature",
      "properties": {},
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            113.873291015625,
            -2.180259769681343
          ],
          [
            113.829345703125,
            -2.147324286308339
          ],
          [
            113.79638671875,
            -2.0924302418460448
          ],
          [
            113.7689208984375,
            -2.037534275777126
          ],
          [
            113.7469482421875,
            -1.99910598312332
          ],
          [
            113.7139892578125,
            -1.9661667298513326
          ],
          [
            113.64257812499999,
            -1.9387168550573113
          ],
          [
            113.56567382812499,
            -1.922246716098091
          ],
          [
            113.477783203125,
            -1.9002862838753778
          ],
          [
            113.433837890625,
            -1.9002862838753778
          ],
          [
            113.389892578125,
            -1.8947961320582758
          ],
          [
            113.3349609375,
            -1.916756634399981
          ],
          [
            113.2305908203125,
            -1.9277367801405985
          ],
          [
            113.13720703125,
            -1.9496968587473593
          ],
          [
            113.04931640625,
...