MapView

Molecule

Leaflet tabanlı etkileşimli harita. Tooltip destekli işaretçiler, predefined zone'lar (polygon), rota çizgisi (polyline) ve tıkla-ekle işaretçi modu.

Tam özellik — işaretçi + zone + rota

Preview
Code
<%- include('modules/ui/MapView', {
  center:  [41.015, 28.979],
  zoom:    6,
  height:  400,
  markers: CITIES,
  zones:   ZONES,
  routes:  ROUTES,
}) %>

Tıkla-ekle işaretçi modu

Preview
Code
<%- include('modules/ui/MapView', {
  center: [39.5, 35.0],
  zoom:   5,
  height: 360,
}) %>

Yalnız zone ve rota

Preview
Code
<%- include('modules/ui/MapView', {
  center: [39.5, 35.0],
  zoom:   5,
  height: 360,
  zones:  ZONES,
  routes: ROUTES,
}) %>
Source modules/ui/MapView.ejs