Skip to content

bazhanius/simple-geo-tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Geographic Tool

Table of Contents

Description

Yet another (supposed to be simple) tool to add geo objects on map. Try it on GitHub Pages.

img

Main features

  • Adding object(s) on the map:
    • via inputting parameters (latitude, longitude and accuracy) in form fields for single object
    • via inputting JSON array of coordinates for single or multiple objects
    • via entering URL parameter
    • by shift-clicking on the map
    • with or without marker's pin or dot
    • with custom color, line weight and line dashes
    • by applying function to recently added objects (group objects)
  • Supported object's types:
    • point
    • circle
    • line and polyline
    • polygon
    • rectangle (only in JSON tab)
    • SVG (only as Data URI and in JSON tab)
    • GeoJSON
    • cursor on route (animate cursor along a given path)
  • List of added objects with opportunity to:
    • view full info
    • copy object to clipboard
    • locate (fly to) certain object
    • delete certain object
    • copy all objects to clipboard
    • show all objects
    • delete all objects
  • Map controls:
    • selecting tile layers (OpenStreetMap, Wikimedia etc.)
    • geolocating current position of the device
    • show address (geocoding) in popup of object's markers (disabled by default in settings)
    • ruler for measure distance
  • Other:
    • setting of object creation and other options
    • store user settings in localStorage, also last clicked coordinates on the map as the center point of the map on next page load.

JSON format

Directly specified objects

Parameters

Parameter Type Description
type (required) String Enum:
  • "point"
  • "circle"
  • "polyline"
  • "polygon"
  • "rectangle"
  • "svgString"
  • "cursorOnRoute"

Type of the object.
coords (required) Array of objects Object of the form:
{"lat": Number <double>, "lon": Number <double>} or [lat, lon].
Where lat is latitude, from -90.0 to 90.0, and lon is longitude, from -180.0 to 180.0.

One object for type point or circle, and one or more for other.
Two object for "rectangle" and "svgString" — top-left and bottom-right vertices of bounds.
radius Number <double> Radius of the circle, in meters. Only applicable and required to type "circle", otherwise will be ignored.
azimuth Number <double> Direction in degrees east of True North (clockwise), from 0° to 360°. If set, the dot will be replaced with an arrow. Only applicable to type "point" and "circle", otherwise will be ignored.
color String Stroke and fill CSS-color of the object. HEX, RGB(A), name etc.
Used as stroke value in "svgString".
weight Number <integer> Stroke width in pixels. Not applicable to "point".
Used as stroke-width value in "svgString".
fill String Applicable only to "svgString". Replace each fill value in SVG with given CSS-color.
dashedLine Boolean Create dashes and gaps in the stroke. Not applicable to "point" and "svgString".
showMarkerPin Boolean Allows to enable/disable the marker pin for object.
showMarkerDot boolean Allows to enable/disable the marker dot for object.
followCursor Boolean Default false. Cursor will be always in center of map. Only for "cursorOnRoute".
stepDistance (required) Number <double> Distance increment for next tick. In kilometers. Only for "cursorOnRoute".
stepInterval (required) Number <double> Time for update distance. In seconds. Only for "cursorOnRoute".
traversedColor String Default unset. Traversed route color. Only for "cursorOnRoute".
smoothTransition Boolean Default false. Setting to true, cursor will use CSS transition based on the stepInterval. Best to use with small values of stepInterval and stepDistance. Only for "cursorOnRoute".
whiteBorder Boolean Default false. Add 1px border around route. Only for "cursorOnRoute".
flipCoords Boolean Default false. Flip lat/lon from "coords". Useful for copying feature.geometry.coordinates from GeoJSON. Only for "cursorOnRoute".

Usage example

Point

Example with all required parameters ("type", "coords") and almost all optional (name of "color", "azimuth", "showMarkerPin", "showMarkerDot"):

[
   {
      "type": "point",
      "coords": [
         {
            "lat": 55.039372,
            "lon": 37.552016
         }
      ],
      "color": "black",
      "azimuth": 45,
      "showMarkerPin": false,
      "showMarkerDot": true
   }
]
Circle

Example with all required parameters (type, coords, radius) and some optional (RGBA color, showMarkerPin):

[
   {
      "type": "circle",
      "coords": [
         {
            "lat": 56.325227,
            "lon": 37.854250
         }
      ],
      "radius": 10000,
      "color": "rgba(51, 136, 255,0.95)",
      "showMarkerPin": false
   }
]
Polyline

Example with all required parameters (type, coords) and one optional (HEX color):

[
   {
      "type": "polyline",
      "coords": [
         {
            "lat": 55.124319,
            "lon": 36.777198
         },
         {
            "lat": 56.273381,
            "lon": 38.777437
         },
         {
            "lat": 55.630222,
            "lon": 39.332448
         }
      ],
      "color": "#6e14ef"
   }
]
Polygon

Example only with required parameters (type, coords):

[
   {
      "type": "polygon",
      "coords": [
         {
            "lon": 36.426052,
            "lat": 56.181837
         },
         {
            "lon": 39.201706,
            "lat": 56.160414
         },
         {
            "lon": 38.987349,
            "lat": 55.143146
         },
         {
            "lon": 36.327118,
            "lat": 55.290538
         },
         {
            "lon":36.426052,
            "lat":56.181837
         }
      ]
   }
]
Rectangle

Example only with required parameters (type, coords):

[
   {
      "type": "rectangle",
      "coords": [
         {
            "lon": 37.854319,
            "lat": 55.569630
         },
         {
            "lon": 38.987349,
            "lat": 55.143146
         }
      ]
   }
]
SVG as Data URI

Example only with required parameters (type, coords):

[
   {
      "type": "svgString",
      "coords": [
         {
            "lon": 37.394619,
            "lat": 55.867370
         },
         {
            "lon": 37.877967,
            "lat": 55.732980
         }
      ],
     "svgDataURI": "data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjgwMHB4IiB3aWR0aD0iODAwcHgiIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIAoJIHZpZXdCb3g9IjAgMCAyODAuMDI4IDI4MC4wMjgiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxwYXRoIHN0eWxlPSJmaWxsOiMzMjRENUI7IiBkPSJNMTMxLjI2MywxMzEuMjYzdjE0MC4wMTRjMCw0LjgzOSwzLjkxMiw4Ljc1MSw4Ljc1MSw4Ljc1MXM4Ljc1MS0zLjkxMiw4Ljc1MS04Ljc1MVYxMzEuMjYzSDEzMS4yNjMKCQl6Ii8+Cgk8cGF0aCBzdHlsZT0iZmlsbDojRTI1NzRDOyIgZD0iTTE0MC4wMTQsMGM0OC4zMzEsMCw4Ny41MDksMzkuMTg2LDg3LjUwOSw4Ny41MDlzLTM5LjE3OCw4Ny41MTctODcuNTA5LDg3LjUxNwoJCWMtNDguMzIyLDAuMDA5LTg3LjUwOS0zOS4xOTUtODcuNTA5LTg3LjUxN1M5MS42OTEsMCwxNDAuMDE0LDB6Ii8+Cgk8cGF0aCBzdHlsZT0iZmlsbDojRTg3OTcwOyIgZD0iTTE2Ni4yNjYsNDMuNzYzYzE0LjUsMCwyNi4yNTMsMTEuNzQ0LDI2LjI1MywyNi4yNDRTMTgwLjc2Nyw5Ni4yNiwxNjYuMjY2LDk2LjI2CgkJYy0xNC40OTEsMC0yNi4yNTMtMTEuNzUyLTI2LjI1My0yNi4yNTNDMTQwLjAxNCw1NS41MTUsMTUxLjc3NSw0My43NjMsMTY2LjI2Niw0My43NjN6Ii8+Cgk8cGF0aCBzdHlsZT0iZmlsbDojQ0I0RTQ0OyIgZD0iTTE0OC43NjUsMTY2LjI4NGMtNDguMzEzLDAtODcuNTA5LTM5LjIwNC04Ny41MDktODcuNTI2YzAtMjEuOTM4LDguMTMtNDEuOTM0LDIxLjQ2Ni01Ny4yOTIKCQlDNjQuMjQsMzcuNTI0LDUyLjUwNSw2MS4xMjUsNTIuNTA1LDg3LjUwOWMwLDQ4LjMyMiwzOS4xODYsODcuNTE3LDg3LjUwOSw4Ny41MTdjMjYuMzkzLDAsNDkuOTk0LTExLjc0NCw2Ni4wNDMtMzAuMjE3CgkJQzE5MC42OTksMTU4LjE2MywxNzAuNzAzLDE2Ni4yODQsMTQ4Ljc2NSwxNjYuMjg0eiIvPgo8L2c+Cjwvc3ZnPg=="
   }
]
Cursor On Route

Example with all parameters (required: type, coords, stepDistance, stepInterval; optional: color, traversedColor, weight, whiteBorder, flipCoords, followArrow):

[
  {
    "type": "cursorOnRoute",
    "coords": [[30.361823, 59.928411], [30.362231, 59.927298], [30.362447, 59.926774], [30.362635, 59.926397], [30.362783, 59.92612], [30.362959, 59.925808], [30.363195, 59.925374], [30.363406, 59.92497], [30.363689, 59.924418], [30.363795, 59.924211], [30.363856, 59.924032], [30.363879, 59.923957], [30.363989, 59.923786], [30.364108, 59.923571], [30.364242, 59.923346], [30.364361, 59.923134], [30.364486, 59.922683], [30.364568, 59.922477], [30.364597, 59.922397], [30.364615, 59.922353], [30.364654, 59.922235], [30.364764, 59.922037], [30.364871, 59.921818], [30.365086, 59.921491], [30.365237, 59.921255], [30.365503, 59.920917], [30.365745, 59.920634], [30.365926, 59.920416], [30.366318, 59.919923], [30.366636, 59.919513], [30.366778, 59.919192], [30.36704, 59.918469], [30.367155, 59.918104], [30.36724, 59.917748], [30.36726, 59.917161], [30.367278, 59.91655], [30.367308, 59.916267], [30.36729, 59.915978], [30.367376, 59.915328], [30.367423, 59.915122], [30.367498, 59.914902], [30.367538, 59.914774], [30.36762, 59.914515], [30.367952, 59.913561], [30.367989, 59.913439], [30.36802, 59.913359], [30.368046, 59.913297], [30.368104, 59.913194], [30.368193, 59.913038], [30.368253, 59.91294], [30.368328, 59.912842], [30.368425, 59.912723], [30.369031, 59.911969], [30.369436, 59.911454], [30.369965, 59.910822], [30.370599, 59.910078], [30.370983, 59.909653], [30.371546, 59.909078], [30.372074, 59.908612], [30.372407, 59.908346], [30.372762, 59.908076], [30.37364, 59.907453], [30.374049, 59.907143], [30.374252, 59.906973], [30.374404, 59.906838], [30.374765, 59.906512], [30.375084, 59.906218], [30.375386, 59.90594], [30.375717, 59.905634], [30.375835, 59.905528], [30.375994, 59.905367], [30.376043, 59.905301], [30.376235, 59.905081], [30.376352, 59.904955], [30.376511, 59.904809], [30.376656, 59.904681], [30.376775, 59.90457], [30.376993, 59.904375], [30.377071, 59.904307], [30.377185, 59.904221], [30.377282, 59.904152], [30.377991, 59.903645], [30.378211, 59.903474], [30.378564, 59.903167], [30.37876, 59.903013], [30.379048, 59.902804], [30.380036, 59.902103], [30.381581, 59.900998], [30.383642, 59.899523], [30.384831, 59.898678], [30.386307, 59.897608], [30.387587, 59.896687], [30.388907, 59.895722], [30.389485, 59.895284], [30.389709, 59.89511], [30.389997, 59.894888], [30.391211, 59.893979], [30.392564, 59.89301], [30.39335, 59.892454], [30.394995, 59.891285], [30.396468, 59.890238], [30.396692, 59.890034], [30.396973, 59.889805], [30.397612, 59.889326], [30.398398, 59.888538], [30.398518, 59.888408], [30.398805, 59.888127], [30.39917, 59.887869], [30.399696, 59.887449], [30.400004, 59.887132], [30.400986, 59.886112], [30.401458, 59.885691], [30.401903, 59.885347], [30.402603, 59.88483], [30.404331, 59.883585], [30.40711, 59.881636], [30.408142, 59.880908], [30.408591, 59.880592], [30.40866, 59.880544], [30.408982, 59.880312], [30.409254, 59.880067], [30.409492, 59.879837], [30.409628, 59.879731], [30.409825, 59.879538], [30.409932, 59.879438], [30.410041, 59.879342], [30.410157, 59.879243], [30.410294, 59.879124], [30.41088, 59.878712], [30.411408, 59.878343], [30.411788, 59.878085], [30.412048, 59.877896], [30.41247, 59.877576], [30.412655, 59.877447], [30.412965, 59.877227], [30.413085, 59.877137], [30.413253, 59.877017], [30.413349, 59.876941], [30.413441, 59.876866], [30.413727, 59.876617], [30.41382, 59.876536], [30.413945, 59.87643], [30.414068, 59.876325], [30.41423, 59.876187], [30.414248, 59.876171], [30.414379, 59.876076], [30.414523, 59.875984], [30.414656, 59.875893], [30.414875, 59.875726], [30.415016, 59.875631], [30.415338, 59.875412], [30.416783, 59.874436], [30.417554, 59.873906], [30.419495, 59.872523], [30.420431, 59.871857], [30.421329, 59.871183], [30.422128, 59.870566], [30.422886, 59.869993], [30.423243, 59.869731], [30.423446, 59.869582], [30.423704, 59.86939], [30.423869, 59.869269], [30.423974, 59.869181], [30.424135, 59.869056], [30.424196, 59.869016], [30.424311, 59.868947], [30.424455, 59.868831], [30.424619, 59.868698], [30.424719, 59.868627], [30.424874, 59.868522], [30.425066, 59.868405], [30.425232, 59.868301], [30.425386, 59.868196], [30.425606, 59.868025], [30.425833, 59.867848], [30.426212, 59.867567], [30.426364, 59.86748], [30.426502, 59.8674], [30.426637, 59.867322], [30.426887, 59.867159], [30.426908, 59.867144], [30.427013, 59.867067], [30.42709, 59.867016], [30.427259, 59.866902], [30.427438, 59.866798], [30.427753, 59.866596], [30.428041, 59.866399], [30.428141, 59.866328], [30.428301, 59.866236], [30.428436, 59.86616], [30.428687, 59.865999], [30.428858, 59.865879], [30.429, 59.86577], [30.429111, 59.865683], [30.42925, 59.865579], [30.429464, 59.865421], [30.429666, 59.865274], [30.429865, 59.865135], [30.430161, 59.864938], [30.430312, 59.864843], [30.431398, 59.864156], [30.432478, 59.863474], [30.4335, 59.862827], [30.434611, 59.862125], [30.435685, 59.861443], [30.437897, 59.860041], [30.439957, 59.858736], [30.441684, 59.857642], [30.442614, 59.85704], [30.442994, 59.856781], [30.443419, 59.856496], [30.443742, 59.856291], [30.444012, 59.856132], [30.444273, 59.855969], [30.444465, 59.855832], [30.444491, 59.855813], [30.444822, 59.855581], [30.445297, 59.855245], [30.445519, 59.855089], [30.445743, 59.854928], [30.446011, 59.854736], [30.446352, 59.854513], [30.446709, 59.8543], [30.44701, 59.854117], [30.44734, 59.853888], [30.447684, 59.853644], [30.447938, 59.853467], [30.448166, 59.853303], [30.448442, 59.853105], [30.448903, 59.852761], [30.449952, 59.852094], [30.451419, 59.851199], [30.452163, 59.850704], [30.452771, 59.850272], [30.45321, 59.849957], [30.453437, 59.849792], [30.454032, 59.849366], [30.454651, 59.848917], [30.454928, 59.848716], [30.455786, 59.848091], [30.456472, 59.847573], [30.456923, 59.84724], [30.457462, 59.846854], [30.457704, 59.846681], [30.457908, 59.846533], [30.458217, 59.846312], [30.458759, 59.845908], [30.459073, 59.845693], [30.460085, 59.844967], [30.461534, 59.843922], [30.461859, 59.843691], [30.46238, 59.843322], [30.462539, 59.843209], [30.465861, 59.84085], [30.467381, 59.839765], [30.469248, 59.838432], [30.469537, 59.838224], [30.471287, 59.836968], [30.473794, 59.835182], [30.475409, 59.834022], [30.476018, 59.833582], [30.476831, 59.833001], [30.48023, 59.830568], [30.483508, 59.828224], [30.485233, 59.826986], [30.486222, 59.826281], [30.487218, 59.825572], [30.48815, 59.824942], [30.488842, 59.824437], [30.489442, 59.824014], [30.49009, 59.823544], [30.490338, 59.823378], [30.490685, 59.823114], [30.491288, 59.822674], [30.491912, 59.822234], [30.492549, 59.821785], [30.493165, 59.821358], [30.493782, 59.820908], [30.494399, 59.820461], [30.494901, 59.820103], [30.495418, 59.819731], [30.495913, 59.819375], [30.496493, 59.818958], [30.497867, 59.817975], [30.499031, 59.817172], [30.499236, 59.817016], [30.499852, 59.816548], [30.500346, 59.816195], [30.501003, 59.815739], [30.501591, 59.815292], [30.502286, 59.814797], [30.503275, 59.814106], [30.504296, 59.813369], [30.505887, 59.812221], [30.507482, 59.811074], [30.508309, 59.810487], [30.509097, 59.809914], [30.509814, 59.809402], [30.511163, 59.808488], [30.511951, 59.807951], [30.513037, 59.807166], [30.514338, 59.806249], [30.514373, 59.806225], [30.51852, 59.8032], [30.51922, 59.802705], [30.519562, 59.802451], [30.519992, 59.802118], [30.52024, 59.801923], [30.520411, 59.801805], [30.520543, 59.801709], [30.522597, 59.800256], [30.524768, 59.798633], [30.527226, 59.796894], [30.530996, 59.794215], [30.535887, 59.790738], [30.536735, 59.790159], [30.539444, 59.788266], [30.539938, 59.787914], [30.540851, 59.787259], [30.543528, 59.785327], [30.547487, 59.782409], [30.549733, 59.780801], [30.551874, 59.779264], [30.55715, 59.775464], [30.562403, 59.771698], [30.56485, 59.76994], [30.566028, 59.769175], [30.566291, 59.768991], [30.567165, 59.768366], [30.567776, 59.76791], [30.568404, 59.767488], [30.569069, 59.767064], [30.57044, 59.766267], [30.57182, 59.765537], [30.572566, 59.765174], [30.573859, 59.764591], [30.575272, 59.763994], [30.576373, 59.763552], [30.577268, 59.763215], [30.578602, 59.762752], [30.579522, 59.762466], [30.580382, 59.762198], [30.581541, 59.761872], [30.582964, 59.761494], [30.58541, 59.760874], [30.58727, 59.760366], [30.588564, 59.760029], [30.58918, 59.759827], [30.589722, 59.759654], [30.59039, 59.759444], [30.590487, 59.759419], [30.591523, 59.759171], [30.592346, 59.758908], [30.592588, 59.758848], [30.592952, 59.758758], [30.59397, 59.758441], [30.594455, 59.758307], [30.594672, 59.75824], [30.595114, 59.7581], [30.595348, 59.758022], [30.595947, 59.757835], [30.596438, 59.757704], [30.596943, 59.75759], [30.597794, 59.757373], [30.598325, 59.757254], [30.598872, 59.757115], [30.599438, 59.756984], [30.599894, 59.756866], [30.600882, 59.756599], [30.601572, 59.756415], [30.602331, 59.756168], [30.603141, 59.755886], [30.603926, 59.755593], [30.604673, 59.755285], [30.605411, 59.75496], [30.606093, 59.754654], [30.606824, 59.754296], [30.607204, 59.754105], [30.607356, 59.754029], [30.60767, 59.753868], [30.607943, 59.753749], [30.608432, 59.753489], [30.608671, 59.753336], [30.609155, 59.753016], [30.609784, 59.752589], [30.610466, 59.752178], [30.611148, 59.75182], [30.611743, 59.751576], [30.61219, 59.751361], [30.612693, 59.751091], [30.613031, 59.75086], [30.613387, 59.750612], [30.614476, 59.749783], [30.6156, 59.748891], [30.615921, 59.748622], [30.61647, 59.748197], [30.61695, 59.747823], [30.617291, 59.747554], [30.617634, 59.747282], [30.617912, 59.747055], [30.618182, 59.746827], [30.618451, 59.746592], [30.618712, 59.746356], [30.618959, 59.746121], [30.619185, 59.745884], [30.619321, 59.745733], [30.619448, 59.745588], [30.61964, 59.74534], [30.619898, 59.744984], [30.620154, 59.744629], [30.620382, 59.744354], [30.620627, 59.744091], [30.620887, 59.743842], [30.621243, 59.743535], [30.622026, 59.742903], [30.625661, 59.740052], [30.626226, 59.739609], [30.627711, 59.738447], [30.630867, 59.735864], [30.634164, 59.733227], [30.637573, 59.730511], [30.639288, 59.729156], [30.642211, 59.726819], [30.646918, 59.723091], [30.651733, 59.719301], [30.656905, 59.715195], [30.672495, 59.702785], [30.680261, 59.696611], [30.68414, 59.693506], [30.687966, 59.690372], [30.697572, 59.682745], [30.700962, 59.6801], [30.70113, 59.679968], [30.703057, 59.67843], [30.70317, 59.678337], [30.703205, 59.678308], [30.708146, 59.674319], [30.741097, 59.648063], [30.750893, 59.64026], [30.753003, 59.638592], [30.754351, 59.637486], [30.754884, 59.637112], [30.755819, 59.636348], [30.756024, 59.636177], [30.756512, 59.635796], [30.756687, 59.635647], [30.757204, 59.635243], [30.758486, 59.634225], [30.758747, 59.634064], [30.75896, 59.633908], [30.760236, 59.632875], [30.761913, 59.631525], [30.762988, 59.630664], [30.766009, 59.628251], [30.766499, 59.62786], [30.766883, 59.627617], [30.767347, 59.627352], [30.767837, 59.627105], [30.768617, 59.626748], [30.769041, 59.626557], [30.769264, 59.626426], [30.76963, 59.626181], [30.770117, 59.625768], [30.770534, 59.625427], [30.770861, 59.62516], [30.771508, 59.624627], [30.772661, 59.62364], [30.773876, 59.622633], [30.774422, 59.622176], [30.775124, 59.621564], [30.777526, 59.6196], [30.778854, 59.618556], [30.780546, 59.617221], [30.781503, 59.61647], [30.78318, 59.615159], [30.783791, 59.614674], [30.789591, 59.610106], [30.796009, 59.605012], [30.796316, 59.604769], [30.814081, 59.590662], [30.828935, 59.578651], [30.843763, 59.566625], [30.844532, 59.566111], [30.844916, 59.565809], [30.845428, 59.565414], [30.845988, 59.565094], [30.846501, 59.564806], [30.847053, 59.564482], [30.847708, 59.564086], [30.848022, 59.563877], [30.849089, 59.56309], [30.851018, 59.561702], [30.85161, 59.56131], [30.852369, 59.560843], [30.853568, 59.560129], [30.85429, 59.559715], [30.855282, 59.559177], [30.856457, 59.55856], [30.856763, 59.558372], [30.85698, 59.558225], [30.857423, 59.557932], [30.858018, 59.557547], [30.858388, 59.557305], [30.859004, 59.556911], [30.859541, 59.556625], [30.85994, 59.556374], [30.860432, 59.556035], [30.860869, 59.555756], [30.861383, 59.555482], [30.863671, 59.554178], [30.864865, 59.553517], [30.86634, 59.552753], [30.868402, 59.55168], [30.871339, 59.550162], [30.875093, 59.548216], [30.87566, 59.547918], [30.876826, 59.547317], [30.877448, 59.546999], [30.877953, 59.546737], [30.880415, 59.545454], [30.882043, 59.544606], [30.883673, 59.543768], [30.884809, 59.543144], [30.8852, 59.542904], [30.885718, 59.5426], [30.886832, 59.541926], [30.888148, 59.541168], [30.88891, 59.540767], [30.889559, 59.540432], [30.892281, 59.539025], [30.894308, 59.537975], [30.897557, 59.536272], [30.897817, 59.536133], [30.90118, 59.53446], [30.902803, 59.533568], [30.904532, 59.53267], [30.907976, 59.530876], [30.914918, 59.527284], [30.921717, 59.523725], [30.928683, 59.520159], [30.931813, 59.51851], [30.935165, 59.516858], [30.939251, 59.514691], [30.944597, 59.511832], [30.962317, 59.502656], [30.964203, 59.5016], [30.966222, 59.500564], [30.978196, 59.494325], [30.982774, 59.491936], [30.987608, 59.489395], [30.989463, 59.488427], [30.991273, 59.487448], [30.994158, 59.485949], [30.996148, 59.484908], [31.001055, 59.482343], [31.004744, 59.4804], [31.005142, 59.48019], [31.006685, 59.47938], [31.006972, 59.479229], [31.008542, 59.478412], [31.009031, 59.478148], [31.011559, 59.476832], [31.011619, 59.4768], [31.014817, 59.475146], [31.018211, 59.473371], [31.02332, 59.4707], [31.025246, 59.469682], [31.028605, 59.467971], [31.028841, 59.467851], [31.03276, 59.465826], [31.037747, 59.463208], [31.04303, 59.460455], [31.047845, 59.457932], [31.051932, 59.455737], [31.056651, 59.453266], [31.060837, 59.451068], [31.061938, 59.450502], [31.063088, 59.449895], [31.064204, 59.449314], [31.065311, 59.448733], [31.06848, 59.44706], [31.071384, 59.445518], [31.071798, 59.445296], [31.074752, 59.443745], [31.08377, 59.439054], [31.089397, 59.436114], [31.093326, 59.43403], [31.097714, 59.431731], [31.102318, 59.429317], [31.106114, 59.427325], [31.109989, 59.425308], [31.11289, 59.423766], [31.11588, 59.422195], [31.118793, 59.420664], [31.121482, 59.419273], [31.122927, 59.418502], [31.12492, 59.417459], [31.126255, 59.416754], [31.126505, 59.416623], [31.129091, 59.415265], [31.130907, 59.414309], [31.132801, 59.413323], [31.136323, 59.411472], [31.139061, 59.41003], [31.147416, 59.40562], [31.150471, 59.404011], [31.150992, 59.403736], [31.153318, 59.402518], [31.170037, 59.393757], [31.184181, 59.386332], [31.189245, 59.383621], [31.189578, 59.383447], [31.19196, 59.382193], [31.192051, 59.382148], [31.194468, 59.380907], [31.202062, 59.376932], [31.209674, 59.372898], [31.218766, 59.368113], [31.227819, 59.36332], [31.231313, 59.361496], [31.234802, 59.359663], [31.235638, 59.359233], [31.236457, 59.358795], [31.237243, 59.358362], [31.238054, 59.357937], [31.238669, 59.35761], [31.239671, 59.357074], [31.241137, 59.356294], [31.242758, 59.35544], [31.243377, 59.355109], [31.243978, 59.354786], [31.24475, 59.35438], [31.245313, 59.354084], [31.24612, 59.353645], [31.246608, 59.353395], [31.247284, 59.353035], [31.247865, 59.352747], [31.24892, 59.35225], [31.249472, 59.351992], [31.249811, 59.35184], [31.250156, 59.351672], [31.250966, 59.351258], [31.251971, 59.350727], [31.252978, 59.350178], [31.254083, 59.349516], [31.25465, 59.349189], [31.255342, 59.348801], [31.257312, 59.347756], [31.258053, 59.347368], [31.260447, 59.346092], [31.261064, 59.345757], [31.262205, 59.345135], [31.266963, 59.342611], [31.269432, 59.341309], [31.277392, 59.337093], [31.285514, 59.332798], [31.286733, 59.332167], [31.287679, 59.331638], [31.289831, 59.330518], [31.294218, 59.328225], [31.298469, 59.325944], [31.300648, 59.324819], [31.302818, 59.323656], [31.313244, 59.318116], [31.318457, 59.315365], [31.323591, 59.312643], [31.325851, 59.311441], [31.326148, 59.311284], [31.329604, 59.309446], [31.332016, 59.308186], [31.339677, 59.304132], [31.35655, 59.295181], [31.371079, 59.287459], [31.377802, 59.283891], [31.383014, 59.281133], [31.39201, 59.276366], [31.40212, 59.270967], [31.404419, 59.269749], [31.405061, 59.269405], [31.405463, 59.269195], [31.407976, 59.267871], [31.410098, 59.266741], [31.419328, 59.261819], [31.428438, 59.256969], [31.438382, 59.251678], [31.448881, 59.246092], [31.457766, 59.241347], [31.457969, 59.241239], [31.460486, 59.239898], [31.461205, 59.239514], [31.461366, 59.239433], [31.467389, 59.236253], [31.4726, 59.233477], [31.477827, 59.230703], [31.483528, 59.227663], [31.483732, 59.227558], [31.490063, 59.224168], [31.490344, 59.224017], [31.492779, 59.22271], [31.495507, 59.221254], [31.500292, 59.218704], [31.518279, 59.209122], [31.52546, 59.205269], [31.528218, 59.203789], [31.557643, 59.188045], [31.563217, 59.185064], [31.566591, 59.183239], [31.56734, 59.182843], [31.569919, 59.18148], [31.57401, 59.17925], [31.574282, 59.179105], [31.576751, 59.177771], [31.5792, 59.176457], [31.584411, 59.173658], [31.591149, 59.170048], [31.59448, 59.168239], [31.597323, 59.166697], [31.600358, 59.165082], [31.603332, 59.163504], [31.605896, 59.162108], [31.610418, 59.159674], [31.615182, 59.157144], [31.61565, 59.156895], [31.620315, 59.15444], [31.624484, 59.152205], [31.627583, 59.150535], [31.63203, 59.148127], [31.641438, 59.143043], [31.646625, 59.140228], [31.650506, 59.13815], [31.654079, 59.136244], [31.65763, 59.134331], [31.659512, 59.133326], [31.661681, 59.132141], [31.662398, 59.13176], [31.663112, 59.131363], [31.665833, 59.129929], [31.666246, 59.129699], [31.667774, 59.128868], [31.669763, 59.127814], [31.673374, 59.125879], [31.677266, 59.123767], [31.679573, 59.122538], [31.680319, 59.122118], [31.680478, 59.122032], [31.68303, 59.120647], [31.683693, 59.120276], [31.684495, 59.119844], [31.684779, 59.119692], [31.685087, 59.119463], [31.685456, 59.119281], [31.71492, 59.103372], [31.751236, 59.08381], [31.751418, 59.083712], [31.753493, 59.082592], [31.754013, 59.082314], [31.754039, 59.0823], [31.761596, 59.078277], [31.765301, 59.076418], [31.766378, 59.075885], [31.767231, 59.075443], [31.768336, 59.074826], [31.768695, 59.074597], [31.769773, 59.073894], [31.770707, 59.073265], [31.77117, 59.072956], [31.771726, 59.072529], [31.772269, 59.072083], [31.773425, 59.070989], [31.774237, 59.070158], [31.775202, 59.06916], [31.776204, 59.068067], [31.778731, 59.065537], [31.780043, 59.064389], [31.781676, 59.063243], [31.783125, 59.062372], [31.814068, 59.045646], [31.81417, 59.04559], [31.815579, 59.044815], [31.817067, 59.04401], [31.826417, 59.03899], [31.85058, 59.025965], [31.851352, 59.025547], [31.858908, 59.021454], [31.862594, 59.019445], [31.864837, 59.018264], [31.865729, 59.017794], [31.868661, 59.016376], [31.929137, 58.987533], [31.944544, 58.980081], [31.950731, 58.977088], [31.956665, 58.974245], [31.959405, 58.972953], [31.961425, 58.971984], [31.964383, 58.970549], [31.969233, 58.968214], [31.974112, 58.965888], [31.985304, 58.960514], [32.057468, 58.925873], [32.063032, 58.923161], [32.08451, 58.91273], [32.085016, 58.912485], [32.08989, 58.910128], [32.090382, 58.909891], [32.092884, 58.908687], [32.098155, 58.906148], [32.098949, 58.905767], [32.102482, 58.904037], [32.111902, 58.899493], [32.130209, 58.890721], [32.15539, 58.878458], [32.18266, 58.86525], [32.187823, 58.862749], [32.192824, 58.860269], [32.197122, 58.858175], [32.197913, 58.857794], [32.198768, 58.85738], [32.199018, 58.857279], [32.199448, 58.857103], [32.203733, 58.85502], [32.208065, 58.85293], [32.211319, 58.851343], [32.213768, 58.850161], [32.216495, 58.848784], [32.217431, 58.848306], [32.219887, 58.84704], [32.222294, 58.845874], [32.222881, 58.845608], [32.223945, 58.845136], [32.225069, 58.84462], [32.226248, 58.844134], [32.226559, 58.843986], [32.227661, 58.843443], [32.22818, 58.843183], [32.228832, 58.842866], [32.28038, 58.817971], [32.326445, 58.795462], [32.338263, 58.789607], [32.342921, 58.787316], [32.343208, 58.787178], [32.344108, 58.786752], [32.344618, 58.786497], [32.3709, 58.773614], [32.427382, 58.745968], [32.428227, 58.745537], [32.432343, 58.743517], [32.45714, 58.731381], [32.457613, 58.731146], [32.457954, 58.73098], [32.459815, 58.730072], [32.459986, 58.729988], [32.462672, 58.728672], [32.464088, 58.727965], [32.467987, 58.726058], [32.472543, 58.723809], [32.479102, 58.720593], [32.480904, 58.719711], [32.481152, 58.719583], [32.487732, 58.716351], [32.494009, 58.713259], [32.503244, 58.708713], [32.504873, 58.707941], [32.505719, 58.707569], [32.506581, 58.707211], [32.507465, 58.70686], [32.50836, 58.706513], [32.509227, 58.706205], [32.510149, 58.705888], [32.511107, 58.705582], [32.512084, 58.705281], [32.513041, 58.70501], [32.51405, 58.704739], [32.515074, 58.704484], [32.517062, 58.703996], [32.527278, 58.701528], [32.528022, 58.701353], [32.534807, 58.699748], [32.543876, 58.697573], [32.552179, 58.695579], [32.554647, 58.694994], [32.556463, 58.694563], [32.558088, 58.69416], [32.558911, 58.693945], [32.559909, 58.693673], [32.566346, 58.691919], [32.568304, 58.691395], [32.572708, 58.690194], [32.574449, 58.689735], [32.574777, 58.68965], [32.57669, 58.689184], [32.582816, 58.687709], [32.585304, 58.687118], [32.586511, 58.686842], [32.587649, 58.686585], [32.590079, 58.686089], [32.591587, 58.685784], [32.592231, 58.685641], [32.593073, 58.685459], [32.615534, 58.680252], [32.620135, 58.67902], [32.624684, 58.677681], [32.629748, 58.676052], [32.644403, 58.67101], [32.648149, 58.669721], [32.685829, 58.656704], [32.69571, 58.653342], [32.70299, 58.650793], [32.705805, 58.649816], [32.706155, 58.649695], [32.706301, 58.649645], [32.710178, 58.648323], [32.711381, 58.6479], [32.719982, 58.644928], [32.741949, 58.637423], [32.790219, 58.620683], [32.800554, 58.617149], [32.806249, 58.61513], [32.818468, 58.609841], [32.820839, 58.608718], [32.845917, 58.597417], [32.861913, 58.590254], [32.865118, 58.588813], [32.865936, 58.588447], [32.868533, 58.587287], [32.872738, 58.585399], [32.876949, 58.583511], [32.879711, 58.582258], [32.879825, 58.582205], [32.881341, 58.581532], [32.88166, 58.58139], [32.881716, 58.581365], [32.883477, 58.580582], [32.887922, 58.578565], [32.893314, 58.576152], [32.895913, 58.574989], [32.899915, 58.573197], [32.900495, 58.572938], [32.911307, 58.568068], [32.921461, 58.563201], [32.921883, 58.562979], [32.932099, 58.557762], [32.955781, 58.545591], [32.961549, 58.542913], [32.969984, 58.538643], [32.973822, 58.536642], [32.981616, 58.532331], [33.013982, 58.515112], [33.016211, 58.513922], [33.016555, 58.513741], [33.029283, 58.50691], [33.035631, 58.503495], [33.042198, 58.500248], [33.058058, 58.492525], [33.059433, 58.491858], [33.060633, 58.491269], [33.063106, 58.490072], [33.064521, 58.489384], [33.072342, 58.485553], [33.074817, 58.48434], [33.074899, 58.4843], [33.075026, 58.48424], [33.075255, 58.484133], [33.078622, 58.482492], [33.081936, 58.480894], [33.086287, 58.478791], [33.087248, 58.478323], [33.090679, 58.476655], [33.092258, 58.47586], [33.093756, 58.475066], [33.107615, 58.466945], [33.149748, 58.443106], [33.158894, 58.437683], [33.159204, 58.437506], [33.169369, 58.431717], [33.182318, 58.424255], [33.182705, 58.424032], [33.19791, 58.415535], [33.199014, 58.414934], [33.203108, 58.412838], [33.206762, 58.41109], [33.220452, 58.405377], [33.221476, 58.404944], [33.22632, 58.402954], [33.229141, 58.401731], [33.229645, 58.40152], [33.240563, 58.396815], [33.241432, 58.396447], [33.250449, 58.392762], [33.254791, 58.391026], [33.25869, 58.389412], [33.266247, 58.38624], [33.266357, 58.386196], [33.266617, 58.386097], [33.270845, 58.384319], [33.274898, 58.382613], [33.277479, 58.381534], [33.278774, 58.380992], [33.280478, 58.380277], [33.286163, 58.377884], [33.286696, 58.377659], [33.288384, 58.376949], [33.290201, 58.376196], [33.292826, 58.375098], [33.294387, 58.374451], [33.295653, 58.373933], [33.297263, 58.37325], [33.300641, 58.371836], [33.303972, 58.37045], [33.308745, 58.368469], [33.309577, 58.368129], [33.311035, 58.367533], [33.311509, 58.367332], [33.313031, 58.366706], [33.320227, 58.363655], [33.3209, 58.363364], [33.32119, 58.36323], [33.325589, 58.361049], [33.327466, 58.360066], [33.329129, 58.359103], [33.330599, 58.358163], [33.332365, 58.357017], [33.344319, 58.348927], [33.34623, 58.347621], [33.347991, 58.346401], [33.351123, 58.344255], [33.364331, 58.335214], [33.376624, 58.326875], [33.390821, 58.317079], [33.41863, 58.298095], [33.423735, 58.294632], [33.449872, 58.276721], [33.455204, 58.273055], [33.457575, 58.271376], [33.459853, 58.269723], [33.477252, 58.256812], [33.503312, 58.237492], [33.503989, 58.237055], [33.504208, 58.236882], [33.505581, 58.235864], [33.506138, 58.23546], [33.507151, 58.234726], [33.507532, 58.234424], [33.50799, 58.234074], [33.509123, 58.233235], [33.510394, 58.232283], [33.511579, 58.231419], [33.516244, 58.227944], [33.517882, 58.226724], [33.520286, 58.224931], [33.522634, 58.223175], [33.523182, 58.222764], [33.524216, 58.22199], [33.530084, 58.217634], [33.530643, 58.217217], [33.551484, 58.201588], [33.591459, 58.171784], [33.596127, 58.168226], [33.607584, 58.159759], [33.607886, 58.15953], [33.608601, 58.159042], [33.610729, 58.157669], [33.611872, 58.156962], [33.613016, 58.15632], [33.617397, 58.154055], [33.621885, 58.151822], [33.622127, 58.151699], [33.622251, 58.151637], [33.622791, 58.151375], [33.625295, 58.150153], [33.632612, 58.146458], [33.660312, 58.132628], [33.660796, 58.132387], [33.668203, 58.128671], [33.669215, 58.12816], [33.670223, 58.127649], [33.672231, 58.126599], [33.672321, 58.126548], [33.708028, 58.108785], [33.71098, 58.107104], [33.711713, 58.106697], [33.712422, 58.106299], [33.713676, 58.105544], [33.714024, 58.10533], [33.714257, 58.105189], [33.714871, 58.104793], [33.715491, 58.104377], [33.716713, 58.103523], [33.748669, 58.082076], [33.753781, 58.078637], [33.755128, 58.077737], [33.755948, 58.077192], [33.756034, 58.077134], [33.763325, 58.072237], [33.770701, 58.067272], [33.77817, 58.062424], [33.782777, 58.059775], [33.787433, 58.05711], [33.796622, 58.051727], [33.797494, 58.051238], [33.799631, 58.05003], [33.800592, 58.049497], [33.801244, 58.049105], [33.802677, 58.048247], [33.8038, 58.047632], [33.806584, 58.046019], [33.807561, 58.045441], [33.80851, 58.044893], [33.811959, 58.042905], [33.814738, 58.041331], [33.817458, 58.039747], [33.818702, 58.03902], [33.819434, 58.038607], [33.84086, 58.026178], [33.841839, 58.025607], [33.851893, 58.019879], [33.852379, 58.019598], [33.858894, 58.01584], [33.859544, 58.015481], [33.869481, 58.00984], [33.880298, 58.003382], [33.8912, 57.996194], [33.896473, 57.992787], [33.897426, 57.992165], [33.898144, 57.991687], [33.899834, 57.990561], [33.901861, 57.989253], [33.903191, 57.988391], [33.90376, 57.988013], [33.905559, 57.986808], [33.907104, 57.985777], [33.907517, 57.985502], [33.909568, 57.984127], [33.912741, 57.982007], [33.913695, 57.98139], [33.914688, 57.980744], [33.917192, 57.979077], [33.920509, 57.976871], [33.928678, 57.971437], [33.93719, 57.965698], [33.94309, 57.961855], [33.952167, 57.955849], [33.953947, 57.954671], [33.971107, 57.943265], [33.980094, 57.937225], [33.981396, 57.936351], [33.989965, 57.930466], [33.997621, 57.925271], [34.006184, 57.919451], [34.00928, 57.917313], [34.014054, 57.914009], [34.014165, 57.913933], [34.015707, 57.912885], [34.019179, 57.910535], [34.024216, 57.907103], [34.027932, 57.904547], [34.0282, 57.904363], [34.036563, 57.89864], [34.036647, 57.898582], [34.039885, 57.896379], [34.043157, 57.894114], [34.04461, 57.893152], [34.045905, 57.892344], [34.047229, 57.891604], [34.048861, 57.890818], [34.05011, 57.890231], [34.050856, 57.889904], [34.051077, 57.889807], [34.051403, 57.889653], [34.052044, 57.889357], [34.052656, 57.889095], [34.053705, 57.888704], [34.054089, 57.888562], [34.054948, 57.888319], [34.055098, 57.888266], [34.055553, 57.88814], [34.056656, 57.887812], [34.058572, 57.887272], [34.060379, 57.886758], [34.060825, 57.886636], [34.062248, 57.886233], [34.06321, 57.885906], [34.06345, 57.885838], [34.06384, 57.88573], [34.064266, 57.885622], [34.065144, 57.88543], [34.065551, 57.885314], [34.066102, 57.885233], [34.067857, 57.884943], [34.068333, 57.884864], [34.069052, 57.884775], [34.069927, 57.884668], [34.070807, 57.884539], [34.07157, 57.884401], [34.072383, 57.884229], [34.0762, 57.883357], [34.079167, 57.882711], [34.080439, 57.882457], [34.082239, 57.882163], [34.084086, 57.881873], [34.085616, 57.881668], [34.086616, 57.881534], [34.091191, 57.88099], [34.091463, 57.880955], [34.095464, 57.880459], [34.096316, 57.88035], [34.097163, 57.880213], [34.097923, 57.880069], [34.098483, 57.879947], [34.099607, 57.879689], [34.101165, 57.879337], [34.102387, 57.879065], [34.104155, 57.878646], [34.105906, 57.878224], [34.106232, 57.878133], [34.1082, 57.877519], [34.110016, 57.876934], [34.111819, 57.876311], [34.111855, 57.876299], [34.112902, 57.87591], [34.113308, 57.875759], [34.114775, 57.875168], [34.116221, 57.874552], [34.117533, 57.873979], [34.119059, 57.87327], [34.12003, 57.87277], [34.120975, 57.872256], [34.122817, 57.871214], [34.126438, 57.869087], [34.126716, 57.86892], [34.134777, 57.864091], [34.141998, 57.859763], [34.15253, 57.853449], [34.197301, 57.826718], [34.197875, 57.826365], [34.206531, 57.821058], [34.233581, 57.804984], [34.273834, 57.78081], [34.279676, 57.776871], [34.281831, 57.775032], [34.286813, 57.769077], [34.291169, 57.763741], [34.312562, 57.737523], [34.314204, 57.735539], [34.31582, 57.733587], [34.32096, 57.72906], [34.325409, 57.726227], [34.327729, 57.725005], [34.329741, 57.724049], [34.337447, 57.720544], [34.341451, 57.718725], [34.342292, 57.718338], [34.342684, 57.718155], [34.343371, 57.717856], [34.349911, 57.714872], [34.350469, 57.714618], [34.357251, 57.711468], [34.362666, 57.708161], [34.393738, 57.687841], [34.395661, 57.686578], [34.420089, 57.670449], [34.436565, 57.659598], [34.445408, 57.653816], [34.453115, 57.648719], [34.453491, 57.648462], [34.45441, 57.647832], [34.45607, 57.646724], [34.456877, 57.646201], [34.460799, 57.643619], [34.464734, 57.64102], [34.472627, 57.635854], [34.487065, 57.626282], [34.496992, 57.619785], [34.499321, 57.61828], [34.50256, 57.616067], [34.506085, 57.613904], [34.508526, 57.612555], [34.510452, 57.611657], [34.513403, 57.61039], [34.516032, 57.609415], [34.518457, 57.608634], [34.521918, 57.607669], [34.526212, 57.606677], [34.538819, 57.604176], [34.546526, 57.602617], [34.548021, 57.602315], [34.551001, 57.601707], [34.559266, 57.60003], [34.560972, 57.599678], [34.561773, 57.599519], [34.562545, 57.599359], [34.563619, 57.599144], [34.570286, 57.597814], [34.57038, 57.597795], [34.570986, 57.597673], [34.573678, 57.597122], [34.57626, 57.596599], [34.578644, 57.596128], [34.583802, 57.595051], [34.588899, 57.59402], [34.627568, 57.586237], [34.645457, 57.582566], [34.662014, 57.579167], [34.693916, 57.572663], [34.730495, 57.565156], [34.744999, 57.562271], [34.754427, 57.56036], [34.758428, 57.559543], [34.758716, 57.559484], [34.766732, 57.557834], [34.780793, 57.554751], [34.785327, 57.553171], [34.785901, 57.552956], [34.787202, 57.55245], [34.788433, 57.551955], [34.789909, 57.551322], [34.791523, 57.550552], [34.793304, 57.549625], [34.795005, 57.548672], [34.795716, 57.548249], [34.796354, 57.547835], [34.797376, 57.547161], [34.797828, 57.546873], [34.799206, 57.546026], [34.801342, 57.544674], [34.802397, 57.544002], [34.803587, 57.543264], [34.805755, 57.541906], [34.807914, 57.540537], [34.810733, 57.538744], [34.81227, 57.537767], [34.812706, 57.537492], [34.82126, 57.532025], [34.832607, 57.524823], [34.849588, 57.514187], [34.900395, 57.482117], [34.907605, 57.477411], [34.916595, 57.471696], [34.951374, 57.44958], [34.960124, 57.444019], [34.969085, 57.438315], [34.978878, 57.432074], [34.985434, 57.427856], [34.987253, 57.426703], [34.987562, 57.426507], [34.988487, 57.425921], [34.98872, 57.425774], [34.990068, 57.424898], [34.991536, 57.423982], [34.993661, 57.422748], [34.994802, 57.422065], [34.995786, 57.421434], [34.996785, 57.420821], [34.997894, 57.420058], [35.000101, 57.418515], [35.001775, 57.417426], [35.00295, 57.416707], [35.003297, 57.416478], [35.003804, 57.416155], [35.015495, 57.4087], [35.018938, 57.40644], [35.060211, 57.3801], [35.066262, 57.3762], [35.066568, 57.375999], [35.085154, 57.364161], [35.103039, 57.352676], [35.136281, 57.331329], [35.145699, 57.324906], [35.158413, 57.317084], [35.17162, 57.308499], [35.188025, 57.298012], [35.18817, 57.297919], [35.20306, 57.288397], [35.211853, 57.282682], [35.217396, 57.279079], [35.217675, 57.278897], [35.21935, 57.277815], [35.231564, 57.269933], [35.234281, 57.2682], [35.248268, 57.259158], [35.262429, 57.250134], [35.275942, 57.241285], [35.308091, 57.220498], [35.323019, 57.210818], [35.323202, 57.210699], [35.333424, 57.204069], [35.33462, 57.203272], [35.340581, 57.199403], [35.354097, 57.190931], [35.373718, 57.177885], [35.376691, 57.175964], [35.387254, 57.169037], [35.388166, 57.168439], [35.397636, 57.162378], [35.400344, 57.160619], [35.402916, 57.158947], [35.403441, 57.158601], [35.40553, 57.157344], [35.407734, 57.156151], [35.408457, 57.155768], [35.41098, 57.154448], [35.41334, 57.153267], [35.417007, 57.151431], [35.41834, 57.150761], [35.426537, 57.146629], [35.434078, 57.142913], [35.442357, 57.1387], [35.444513, 57.137618], [35.444701, 57.137523], [35.44501, 57.137364], [35.445587, 57.137081], [35.446749, 57.136497], [35.449051, 57.135341], [35.45224, 57.13374], [35.459601, 57.130042], [35.460591, 57.129536], [35.46123, 57.12922], [35.462634, 57.128518], [35.463134, 57.128262], [35.463815, 57.127919], [35.464184, 57.127724], [35.465596, 57.127016], [35.466203, 57.126706], [35.468791, 57.125409], [35.469888, 57.124866], [35.470965, 57.12433], [35.471178, 57.124223], [35.471794, 57.123911], [35.472144, 57.123735], [35.472591, 57.12351], [35.474368, 57.122604], [35.474539, 57.122516], [35.48353, 57.11799], [35.483712, 57.117898], [35.491764, 57.113941], [35.495965, 57.111717], [35.502725, 57.108335], [35.512324, 57.103606], [35.517677, 57.100383], [35.521158, 57.097593], [35.52698, 57.09256], [35.527245, 57.092331], [35.527385, 57.092211], [35.543125, 57.07855], [35.547324, 57.074972], [35.547463, 57.074845], [35.553557, 57.069612], [35.553659, 57.069522], [35.557114, 57.066548], [35.564293, 57.060342], [35.571253, 57.054326], [35.579339, 57.047353], [35.585515, 57.04204], [35.585687, 57.041893], [35.595656, 57.033317], [35.623159, 57.015183], [35.650487, 56.997275], [35.65737, 56.992866], [35.666401, 56.986885], [35.666704, 56.986685], [35.678776, 56.978688], [35.678996, 56.978556], [35.679955, 56.977923], [35.682975, 56.975927], [35.695136, 56.96789], [35.715717, 56.954361], [35.7171, 56.953452], [35.723263, 56.949402], [35.725329, 56.948011], [35.741337, 56.937491], [35.744364, 56.935501], [35.745949, 56.934459], [35.753855, 56.92916], [35.754863, 56.928483], [35.760247, 56.924956], [35.791053, 56.904572], [35.791155, 56.904508], [35.792618, 56.903582], [35.795251, 56.901915], [35.796875, 56.900887], [35.80341, 56.896482], [35.807327, 56.893843], [35.815571, 56.888375], [35.818033, 56.88683], [35.818152, 56.886746], [35.820624, 56.885095], [35.822038, 56.88414], [35.82208, 56.884115], [35.822119, 56.884091], [35.822191, 56.884037], [35.823069, 56.883444], [35.823874, 56.882901], [35.825548, 56.881741], [35.82799, 56.880044], [35.829391, 56.879013], [35.829806, 56.87866], [35.830821, 56.877762], [35.831311, 56.877319], [35.831458, 56.877164], [35.831979, 56.876564], [35.832836, 56.875592], [35.832925, 56.875481], [35.834388, 56.873619], [35.835132, 56.872708], [35.836191, 56.87148], [35.836844, 56.870659], [35.837808, 56.869457], [35.838684, 56.868336], [35.839079, 56.867804], [35.839321, 56.867496], [35.839366, 56.867438], [35.839484, 56.867289], [35.840836, 56.86557], [35.841088, 56.865261], [35.842766, 56.863159], [35.843373, 56.862408], [35.843961, 56.861638], [35.844616, 56.860821], [35.845363, 56.859904], [35.845522, 56.859701], [35.845978, 56.859119], [35.846342, 56.858631], [35.847713, 56.857099], [35.848956, 56.855728], [35.849807, 56.854919], [35.852013, 56.853189], [35.852798, 56.852576], [35.853111, 56.852337], [35.853661, 56.851932], [35.853817, 56.851821], [35.854179, 56.851584], [35.854918, 56.851095], [35.855591, 56.850654], [35.856964, 56.849835], [35.857157, 56.849719], [35.85755, 56.849493], [35.85843, 56.849019], [35.859234, 56.848613], [35.861872, 56.847349], [35.86241, 56.84709], [35.86294, 56.846873], [35.863405, 56.846683], [35.864445, 56.846259], [35.864826, 56.846105], [35.864907, 56.846072], [35.865534, 56.845834], [35.865973, 56.845663], [35.866642, 56.845397], [35.867224, 56.84518], [35.867749, 56.844975], [35.86817, 56.844807], [35.86892, 56.844473], [35.8699, 56.844005], [35.870399, 56.843766], [35.871015, 56.843498], [35.871893, 56.84314], [35.872969, 56.84272], [35.874378, 56.842179], [35.875456, 56.841761], [35.877285, 56.841054], [35.877556, 56.840953], [35.878328, 56.840662], [35.879272, 56.840367], [35.880501, 56.839971], [35.880812, 56.839876], [35.881177, 56.839751], [35.882019, 56.839436], [35.882612, 56.839207], [35.883322, 56.838914], [35.883597, 56.838774], [35.886133, 56.837868], [35.88652, 56.837741], [35.887359, 56.837411], [35.888247, 56.837089], [35.888454, 56.837017], [35.888744, 56.836915], [35.889041, 56.8368], [35.889599, 56.836594], [35.891569, 56.835841], [35.892816, 56.835372], [35.894019, 56.834906], [35.896391, 56.833875], [35.898677, 56.832945], [35.900543, 56.832238], [35.90141, 56.831891], [35.902421, 56.831489], [35.902575, 56.831426], [35.902794, 56.831334], [35.904259, 56.830749], [35.906723, 56.82978], [35.911667, 56.827823], [35.916564, 56.825923], [35.917926, 56.8254], [35.921485, 56.82405], [35.921548, 56.824026], [35.922027, 56.823841], [35.92582, 56.822379], [35.926403, 56.82215], [35.927025, 56.82191], [35.931328, 56.82022], [35.934285, 56.819049], [35.936249, 56.818286], [35.941174, 56.816367], [35.942642, 56.815799], [35.945232, 56.814799], [35.946123, 56.814461], [35.949784, 56.81306], [35.950087, 56.812952], [35.951022, 56.812592], [35.95194, 56.812233], [35.980794, 56.800956], [35.982357, 56.800345], [35.983521, 56.79989], [35.984313, 56.799576], [35.998392, 56.794045], [35.999917, 56.793424], [36.000257, 56.793286], [36.002232, 56.79242], [36.003807, 56.791663], [36.005897, 56.790524], [36.00771, 56.789462], [36.009205, 56.788485], [36.010469, 56.787556], [36.011948, 56.786365], [36.013381, 56.785081], [36.014341, 56.784151], [36.015037, 56.783422], [36.015794, 56.782607], [36.021137, 56.777079], [36.024598, 56.773497], [36.030746, 56.767181], [36.03836, 56.759203], [36.039468, 56.758074], [36.040663, 56.75703], [36.041746, 56.756133], [36.04224, 56.755746], [36.04231, 56.7557], [36.042936, 56.755276], [36.045505, 56.753513], [36.049243, 56.751382], [36.05467, 56.748966], [36.071063, 56.742613], [36.089215, 56.73553], [36.105909, 56.729084], [36.136725, 56.717154], [36.138879, 56.716299], [36.141514, 56.715253], [36.146308, 56.71335], [36.148095, 56.712719], [36.150876, 56.71184], [36.152926, 56.711279], [36.156041, 56.710546], [36.158169, 56.710094], [36.161346, 56.709533], [36.165309, 56.709032], [36.177446, 56.70762], [36.199097, 56.705139], [36.204892, 56.704465], [36.210704, 56.703792], [36.21978, 56.702743], [36.222006, 56.702486], [36.224866, 56.702156], [36.228111, 56.701695], [36.231613, 56.701071], [36.235329, 56.700235], [36.239026, 56.69922], [36.242292, 56.698087], [36.24596, 56.696612], [36.253339, 56.69372], [36.254294, 56.693404], [36.25509, 56.693092], [36.255762, 56.692827], [36.256526, 56.692522], [36.25738, 56.692188], [36.258035, 56.691924], [36.258891, 56.691589], [36.259986, 56.691156], [36.260403, 56.690988], [36.260952, 56.690773], [36.261484, 56.690557], [36.262087, 56.690323], [36.262557, 56.690133], [36.263172, 56.689875], [36.26405, 56.689501], [36.264427, 56.68934], [36.264866, 56.689139], [36.26565, 56.688777], [36.266509, 56.688366], [36.267409, 56.687914], [36.268448, 56.687363], [36.269672, 56.686674], [36.270822, 56.685982], [36.271497, 56.685561], [36.272369, 56.684974], [36.273388, 56.684266], [36.27389, 56.683887], [36.274457, 56.68344], [36.274697, 56.683248], [36.275102, 56.682924], [36.275782, 56.682355], [36.27658, 56.681656], [36.277089, 56.681178], [36.277466, 56.680811], [36.277997, 56.680242], [36.278644, 56.679541], [36.279058, 56.679058], [36.27954, 56.67848], [36.280181, 56.677646], [36.280507, 56.677176], [36.281036, 56.676381], [36.281394, 56.675801], [36.281644, 56.675383], [36.281913, 56.674863], [36.282054, 56.674591], [36.282415, 56.67385], [36.282651, 56.673342], [36.282989, 56.672592], [36.283057, 56.672447], [36.283249, 56.672037], [36.283549, 56.67137], [36.283748, 56.670975], [36.283996, 56.670406], [36.284316, 56.669746], [36.284566, 56.669225], [36.28491, 56.668504], [36.285287, 56.667661], [36.285685, 56.666817], [36.285849, 56.666458], [36.285996, 56.666135], [36.286428, 56.665197], [36.286782, 56.664409], [36.287179, 56.663541], [36.287368, 56.663152], [36.287631, 56.662563], [36.287778, 56.662251], [36.288033, 56.661698], [36.288298, 56.661122], [36.288586, 56.660479], [36.288667, 56.660304], [36.288715, 56.660201], [36.288926, 56.659744], [36.290247, 56.656887], [36.292913, 56.65112], [36.294759, 56.647127], [36.295056, 56.646486], [36.295536, 56.645447], [36.296043, 56.64435], [36.29618, 56.644054], [36.299967, 56.635861], [36.300039, 56.635704], [36.300412, 56.63494], [36.300866, 56.63402], [36.301313, 56.633225], [36.301576, 56.632787], [36.302003, 56.632121], [36.302379, 56.631575], [36.302869, 56.630924], [36.303181, 56.630528], [36.303656, 56.629946], [36.304182, 56.629342], [36.304978, 56.628492], [36.305587, 56.627878], [36.306022, 56.627469], [36.306493, 56.627036], [36.307099, 56.626507], [36.307552, 56.626143], [36.308257, 56.625565], [36.308792, 56.625156], [36.309159, 56.624885], [36.30975, 56.624458], [36.310356, 56.624033], [36.310965, 56.623632], [36.311645, 56.623207], [36.312338, 56.622793], [36.313202, 56.622312], [36.313748, 56.62203], [36.314725, 56.621517], [36.315057, 56.621352], [36.316999, 56.620445], [36.330791, 56.613307], [36.333447, 56.611944], [36.335422, 56.610929], [36.343931, 56.606561], [36.354056, 56.601346], [36.355091, 56.600813], [36.362287, 56.597144], [36.363386, 56.596567], [36.375024, 56.590603], [36.378849, 56.588642], [36.380635, 56.587664], [36.384257, 56.585453], [36.390101, 56.581834], [36.39219, 56.580536], [36.394709, 56.578977], [36.397045, 56.577515], [36.399208, 56.576137], [36.408818, 56.570152], [36.41054, 56.569093], [36.418469, 56.563962], [36.427339, 56.558492], [36.428242, 56.557935], [36.435235, 56.553558], [36.43535, 56.553485], [36.435412, 56.553443], [36.436589, 56.552665], [36.437935, 56.551832], [36.438431, 56.551526], [36.439384, 56.550941], [36.440735, 56.550112], [36.449551, 56.544702], [36.458731, 56.538858], [36.463297, 56.535249], [36.471357, 56.528567], [36.480278, 56.521103], [36.489148, 56.513805], [36.498272, 56.506197], [36.504415, 56.501111], [36.504968, 56.500653], [36.505976, 56.499819], [36.514897, 56.492461], [36.524324, 56.484681], [36.531927, 56.478356], [36.538618, 56.472953], [36.545664, 56.467045], [36.552918, 56.46116], [36.553595, 56.460593], [36.553952, 56.460294], [36.555471, 56.459022], [36.555753, 56.458791], [36.556618, 56.458088], [36.557155, 56.457635], [36.558026, 56.456912], [36.559496, 56.455694], [36.56085, 56.454565], [36.565576, 56.450688], [36.566431, 56.449979], [36.566856, 56.449622], [36.566993, 56.449507], [36.56704, 56.44947], [36.56726, 56.449273], [36.567649, 56.448877], [36.568015, 56.448575], [36.568211, 56.448405], [36.568556, 56.448111], [36.568909, 56.447815], [36.569363, 56.447439], [36.569743, 56.447124], [36.570858, 56.446204], [36.573224, 56.444246], [36.577975, 56.440311], [36.578839, 56.439617], [36.57996, 56.438675], [36.580868, 56.437902], [36.582243, 56.436706], [36.588575, 56.431465], [36.595559, 56.425646], [36.59628, 56.425047], [36.604389, 56.418263], [36.612043, 56.411982], [36.621032, 56.404528], [36.629284, 56.397684], [36.629423, 56.39757], [36.631963, 56.395463], [36.641279, 56.387853], [36.65113, 56.379629], [36.658346, 56.37353], [36.659587, 56.37248], [36.661647, 56.370763], [36.661908, 56.370551], [36.662891, 56.369717], [36.663595, 56.369138], [36.664264, 56.368635], [36.665689, 56.367577], [36.667275, 56.366606], [36.668017, 56.366162], [36.669812, 56.365035], [36.671734, 56.363923], [36.672566, 56.363479], [36.673215, 56.363033], [36.674049, 56.362534], [36.675686, 56.361564], [36.678924, 56.359646], [36.679328, 56.359421], [36.679949, 56.359054], [36.680916, 56.358493], [36.682782, 56.357375], [36.686513, 56.355123], [36.687386, 56.354613], [36.688384, 56.354019], [36.690018, 56.353035], [36.690427, 56.35279], [36.692056, 56.351831], [36.693983, 56.350668], [36.694388, 56.350429], [36.694771, 56.35018], [36.695551, 56.349674], [36.697143, 56.348688], [36.698638, 56.347554], [36.700202, 56.346311], [36.70052, 56.346036], [36.701011, 56.345609], [36.702642, 56.343954], [36.703577, 56.342917], [36.705211, 56.340833], [36.705559, 56.34034], [36.705839, 56.339845], [36.706293, 56.339066], [36.706635, 56.33851], [36.706717, 56.338373], [36.707828, 56.336635], [36.707952, 56.33641], [36.708138, 56.336063], [36.708449, 56.335387], [36.709025, 56.334415], [36.711296, 56.330914], [36.71179, 56.330258], [36.712096, 56.329893], [36.712405, 56.329492], [36.712764, 56.328965], [36.713063, 56.328514], [36.713309, 56.328164], [36.713632, 56.327629], [36.713703, 56.327523], [36.71469, 56.325981], [36.714806, 56.3258], [36.715095, 56.325441], [36.715289, 56.325202], [36.715705, 56.324548], [36.716217, 56.323745], [36.717257, 56.322114], [36.717263, 56.322104], [36.718418, 56.320368], [36.720208, 56.317676], [36.723806, 56.311937], [36.72561, 56.30913], [36.726654, 56.30773], [36.727814, 56.306369], [36.729295, 56.304909], [36.730991, 56.303443], [36.73565, 56.299638], [36.736182, 56.299193], [36.737402, 56.298207], [36.741151, 56.295157], [36.741238, 56.295086], [36.743754, 56.29304], [36.744728, 56.292249], [36.745655, 56.291445], [36.747465, 56.289738], [36.748583, 56.288419], [36.749642, 56.287081], [36.750856, 56.285248], [36.753844, 56.280437], [36.756183, 56.276646], [36.760457, 56.269586], [36.761129, 56.268475], [36.762892, 56.265567], [36.764683, 56.262997], [36.767097, 56.260244], [36.768377, 56.259057], [36.770687, 56.257106], [36.774369, 56.254651], [36.780568, 56.251435], [36.781768, 56.250938], [36.787636, 56.248943], [36.830574, 56.237235], [36.855859, 56.23039], [36.8837, 56.222835], [36.902047, 56.217839], [36.918676, 56.213252], [36.925322, 56.211172], [36.93158, 56.208357], [36.933095, 56.207508], [36.933385, 56.207339], [36.952625, 56.19572], [36.953296, 56.195313], [36.961611, 56.190296], [36.964891, 56.188323], [36.965286, 56.188082], [36.96709, 56.186995], [36.968715, 56.186019], [36.971394, 56.184414], [36.971737, 56.184207], [36.971828, 56.184152], [36.972009, 56.18404], [36.973424, 56.183173], [36.975234, 56.182087], [36.976418, 56.181378], [36.977351, 56.180819], [36.98008, 56.179171], [36.980438, 56.178954], [36.981464, 56.178336], [36.983087, 56.177334], [36.983457, 56.17711], [36.983825, 56.176876], [36.985965, 56.175339], [36.986704, 56.174765], [36.986994, 56.174525], [36.987491, 56.174113], [36.988969, 56.172746], [36.989905, 56.17179], [36.991067, 56.170448], [37.011488, 56.143979], [37.01967, 56.133286], [37.025338, 56.125781], [37.027275, 56.1217], [37.031422, 56.110902], [37.03186, 56.109775], [37.032266, 56.108693], [37.033533, 56.10541], [37.034146, 56.10381], [37.034925, 56.102242], [37.036347, 56.099983], [37.038134, 56.09779], [37.039375, 56.096489], [37.040689, 56.095254], [37.042442, 56.093754], [37.050076, 56.087215], [37.057996, 56.080182], [37.059583, 56.078872], [37.059707, 56.078763], [37.059738, 56.078738], [37.061601, 56.077115], [37.062631, 56.07622], [37.073045, 56.067123], [37.073703, 56.066571], [37.075082, 56.065415], [37.075593, 56.064965], [37.076846, 56.063863], [37.082579, 56.05885], [37.089097, 56.053216], [37.091319, 56.051275], [37.101222, 56.042537], [37.102303, 56.041615], [37.103684, 56.040437], [37.103757, 56.040374], [37.124895, 56.021926], [37.138792, 56.009792], [37.139553, 56.009093], [37.140699, 56.008096], [37.141809, 56.007114], [37.156957, 55.993871], [37.158087, 55.992881], [37.159764, 55.991435], [37.162531, 55.988981], [37.164818, 55.987044], [37.167764, 55.984497], [37.168411, 55.98401], [37.168896, 55.983614], [37.169784, 55.982944], [37.170109, 55.982702], [37.1707, 55.982281], [37.171139, 55.981951], [37.172142, 55.981246], [37.172981, 55.98071], [37.173773, 55.980235], [37.175626, 55.979221], [37.17799, 55.978095], [37.179792, 55.977221], [37.181545, 55.976403], [37.184654, 55.975359], [37.188833, 55.974185], [37.202366, 55.971217], [37.211897, 55.969108], [37.251226, 55.960375], [37.266291, 55.957039], [37.266606, 55.95697], [37.267808, 55.956632], [37.267964, 55.956597], [37.269421, 55.956215], [37.273468, 55.955311], [37.2912, 55.951374], [37.295004, 55.950482], [37.298836, 55.949579], [37.300761, 55.949156], [37.302586, 55.948752], [37.313492, 55.946406], [37.315449, 55.945915], [37.319593, 55.944708], [37.321341, 55.94425], [37.323489, 55.943766], [37.325172, 55.943429], [37.32695, 55.94312], [37.330755, 55.942506], [37.332555, 55.942156], [37.334062, 55.941822], [37.341043, 55.940271], [37.34258, 55.939852], [37.344162, 55.939385], [37.347211, 55.938395], [37.34965, 55.937527], [37.352446, 55.936362], [37.358393, 55.933839], [37.358665, 55.933724], [37.381369, 55.924083], [37.390792, 55.920103], [37.390925, 55.920047], [37.425675, 55.905303], [37.426983, 55.904838], [37.427729, 55.904509], [37.429583, 55.903729], [37.434409, 55.901683], [37.44515, 55.897123], [37.445332, 55.897046], [37.44622, 55.896669], [37.447177, 55.896264], [37.447338, 55.896196], [37.448002, 55.895916], [37.450621, 55.894799], [37.451838, 55.89428], [37.453435, 55.893607], [37.453671, 55.893507], [37.455269, 55.89283], [37.456895, 55.892137], [37.457025, 55.892081], [37.461892, 55.890008], [37.464055, 55.889087], [37.468508, 55.887155], [37.48387, 55.880645], [37.493799, 55.876413], [37.500295, 55.873668], [37.500912, 55.873397], [37.512585, 55.868415], [37.514405, 55.867627], [37.518249, 55.866], [37.522562, 55.864184], [37.524492, 55.863358], [37.526459, 55.862488], [37.528222, 55.86174], [37.530207, 55.860897], [37.532012, 55.860153], [37.541873, 55.855939], [37.543588, 55.855196], [37.544747, 55.854672], [37.545842, 55.854123], [37.546495, 55.853767], [37.547019, 55.853485], [37.5479, 55.853004], [37.548776, 55.852481], [37.550703, 55.851225], [37.552098, 55.850332], [37.553464, 55.84944], [37.554937, 55.848507], [37.556808, 55.847284], [37.558681, 55.846011], [37.560105, 55.845049], [37.560953, 55.84449], [37.564829, 55.842067], [37.566104, 55.841282], [37.568691, 55.839607], [37.570361, 55.838485], [37.573406, 55.836569], [37.575969, 55.834968], [37.58496, 55.829184], [37.585103, 55.829092], [37.585319, 55.828952], [37.5925, 55.824312], [37.59558, 55.822321], [37.603113, 55.817447], [37.604649, 55.816472], [37.608367, 55.814073], [37.609132, 55.813579], [37.615921, 55.809174], [37.620859, 55.806002], [37.622518, 55.804933], [37.625328, 55.803099], [37.628207, 55.801257], [37.630151, 55.799988], [37.631144, 55.799356], [37.6314, 55.799194], [37.631937, 55.798842], [37.632475, 55.798564], [37.632783, 55.798367], [37.633615, 55.797925], [37.634743, 55.797194], [37.635069, 55.796982], [37.63575, 55.796554], [37.636083, 55.796348], [37.636146, 55.796308], [37.637711, 55.795322], [37.639133, 55.794401], [37.640904, 55.793221], [37.642137, 55.792421], [37.643076, 55.791696], [37.644544, 55.790506], [37.645729, 55.789539], [37.646296, 55.788934], [37.646888, 55.788271], [37.647535, 55.787551], [37.64853, 55.78645], [37.649521, 55.784971], [37.649954, 55.784348], [37.650209, 55.783978], [37.651079, 55.782694], [37.6512, 55.782505], [37.651511, 55.782009], [37.65186, 55.781465], [37.652133, 55.781084], [37.652261, 55.780879], [37.653508, 55.779013], [37.653634, 55.778817]],
    "traversedColor": "gray",
    "color": "red",
    "weight": 3,
    "whiteBorder": true,
    "stepDistance": 10,
    "stepInterval": 1,
    "smoothTransition": false,
    "followCursor": false,
    "flipCoords": true
  }
]

Objects based on recently added objects

Parameters

Parameter Type Description
type (required) String Only "group".
function (required) String Enum:
  • "drawCircleBounds"
  • "drawRectangleBounds"

Function of calculation.
objectIDs (required) Array of integers List of recently added objects IDS that will be proccessed by function. Must contain minimum one valid ID.
color String Stroke and fill CSS-color of the object. HEX, RGB(A), name etc.
weight Number <integer> Stroke width in pixels. Not applicable to "point".
dashedLine Boolean Create dashes and gaps in the stroke. Not applicable to "point".
showMarkerPin Boolean Allows to enable/disable the marker pin for object.
showMarkerDot boolean Allows to enable/disable the marker dot for object.

Usage example

Group

This will add a "circle" object around the objects with the given IDs:

[
   {
      "type": "group",
      "function": "drawCircleBounds",
      "objectIDs": [2, 3, 7],
      "color": "black",
      "weight": 1,
      "showMarkerPin": false,
      "showMarkerDot": true
   }
]

JSON usage

Text field

Enter JSON into the text field on array tab. JSON must contain one array with one or more objects in curly brackets comma separated:

[{object_1}, {object_2}, ..., {object_n}]

URL parameters

Use URL parameter tab=array together with addArray=[{obj_1}, {obj_2}, ..., {obj_n}]:

https://bazhanius.github.io/simple-geo-tool/?tab=array&addArray=[{obj_1}, {obj_2}, ..., {obj_n}]

Dependencies

Build

webpack build