Skip to content

1.7. Map with points

kirillo edited this page May 30, 2016 · 5 revisions

Description

Component represents map with points. Google Maps as a base map.

Elements

  • title
  • points *

* - required

JSON representation

{
  "id": "mapId",
  "title": "title",
  "points": [
       {
          "id": "mapPointId1",
          "lat": -25.363,
          "lng": 131.044,
          "title": "My map marker1",
          "type": 6
       },
       {
          "id": "mapPointId2",
          "lat": -25.363,
          "lng": 131.044,
          "title": "My map marker2",
          "type": 6
       },
       ...
  ],
  "type": 7 
}