Maps

De Entre Amis
Révision datée du 11 février 2021 à 01:55 par Jms (discussion | contributions) (Page créée avec « Maps supports embedding of dynamic maps using the free and open source [https://leafletjs.com Leaflet library]. == Basic syntax == Displaying maps is done with the <code... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
Aller à : navigation, rechercher

Maps supports embedding of dynamic maps using the free and open source Leaflet library.

Basic syntax[ ]

Displaying maps is done with the #display_map parser function.

{{#display_map:center=Brandenburg Gate, Berlin, Germany}}

{{#display_map:center=Brandenburg Gate, Berlin, Germany|scrollzoom=off|zoom=15}}

Customization[ ]

Leaflet maps can be customized using various parameters.

{{#display_map:center=Berlin|width=400|height=250}}

{{#display_map:center=Berlin|width=400|height=250|scrollzoom=off|zoom=11}}

See Customizing Leaflet Maps for a full overview of customization parameter, including examples.

Displaying data[ ]

Markers[ ]

{{#display_map:Brandenburg Gate, Berlin, Germany}}

{{#display_map:Brandenburg Gate, Berlin, Germany|scrollzoom=off}}

You can display multiple locations by separating them with semicolons. And it is possible to use coordinates instead of location names.

{{#display_map:Berlin; Brussel; 40° 42' 46.02" N, 74° 0' 21.39" W}}

{{#display_map:Berlin; Brussel; 40° 42' 46.02" N, 74° 0' 21.39" W|scrollzoom=off}}

You can customize the markers per location. The syntax is:

Location~Popup title~Popup text~File:CustomIcon~Group~Inline label~File:VisitedIcon
  • Location: the location where to display the marker. Both coordinates and addresses are supported
  • Popup title and Popup text: optional content for a popup shown when the marker is clicked. No popup is shown if both are empty
  • File:CustomIcon: optional name of an image to display instead of the default marker
  • Group:
  • Inline label: optional label shown next to the marker. Currently only shown when using Google Maps
  • File:VisitedIcon: optional name of an image to display as marker when the marker is clicked

Example:

{{#display_map:
  Berlin~The city Berlin~Berlin is a really nice city and there is plenty of Club Mate~Red-marker.png;
  Amsterdam~The city Amsterdam~Amsterdam is the capital of The Netherlands~Green-marker.png
}}

{{#display_map:

 Berlin~The city Berlin~Berlin is a really nice city and there is plenty of Club Mate~Red-marker.png;
 Amsterdam~The city Amsterdam~Amsterdam is the capital of The Netherlands~Green-marker.png

| scrollwheelzoom=off }}

Lines[ ]

Via the lines parameter you can display lines on the map. Each line has at least two locations. As with markers you can specify a popup title and text. You can also specify the looks of the line. The syntax is:

First address:Second address:Optional third address:etc
~Popup title~Popup text~Line color~Line opacity~Line thickness

Example:

{{#display_map:lines=
  Berlin:Brussels:London;
  Amsterdam:Paris~Amsterdam to Paris line~I am a text~green~0.42~10
}}

{{#display_map:lines=

 Berlin:Brussels:London;
 Amsterdam:Paris~Amsterdam to Paris line~I am a text~green~0.42~10

| scrollwheelzoom=off }}

Polygons[ ]

Via the polygons parameter you can display polygons on the map. Each polygons has at least two locations. As with markers you can specify a popup title and text. You can also specify the looks of the polygon. The syntax is:

First address:Second address:Optional third address
~Popup title~Popup text~Border color~Border opacity~Border thickness~Fill color~Fill opacity
~Show only on hover

Example:

{{#display_map:polygons=
  Berlin:Brussels:London;
  Amsterdam:Paris:Frankfurt~I am a title~And I am a description~green~0.7~10~blue~0.5
}}

{{#display_map:polygons=

 Berlin:Brussels:London;
 Amsterdam:Paris:Frankfurt~I am a title~And I am a description~green~0.7~10~blue~0.5

| scrollwheelzoom=off }}

Circles[ ]

Via the circles parameter you can display circles on the map. Each circles has a center and a diameter. You can specify the popup title and text and the looks of the circle. The syntax is:

Address of the center:Diameter~Popup title~Popup text~Border color~Border opacity~Border thickness~Fill color~Fill opacity

Example:

{{#display_map:circles=
  Amsterdam:500;
  Amsterdam:100~I am a title~And I am a description~green~0.7~10~blue~0.5
| zoom=14
}}

{{#display_map:circles=

 Amsterdam:500;
 Amsterdam:100~I am a title~And I am a description~green~0.7~10~blue~0.5

| scrollwheelzoom=off | zoom=14 }}

Rectangles[ ]

Via the rectangles parameter you can display rectangles on the map. Each rectangle has a North East location and a South West location. You can specify the popup title and text and the looks of the rectangle. The syntax is:

North East location:South West location
~Popup title~Popup text~Border color~Border opacity~Border thickness~Fill color~Fill opacity

Example:

{{#display_map:rectangles=
  Berlin:Brussels;
  Amsterdam:London~I am a title~And I am a description~green~0.7~10~blue~0.5
}}

{{#display_map:rectangles=

 Berlin:Brussels;
 Amsterdam:London~I am a title~And I am a description~green~0.7~10~blue~0.5

| scrollwheelzoom=off }}

GeoJSON[ ]

As of version 5.6, Maps supports display of GeoJSON via the geojson parameter. See Leaflet GeoJSON files.

Alternative syntax[ ]

When you have many customized markers, using the #display_map parser function can get unwieldy. For this reason you can also use the <display_map> tag. It has all the same parameters as the parser function, the only difference is the syntax. Each location goes own its own line and they do not need to be separated with a semicolon.

Example:

<display_map height="150px" scrollwheelzoom="off" service="leaflet">
  Gent, Belgie~The city Ghent~Ghent is awesome~ ~ ~Ghent
  Brussel~The city Brussel~The capital of Belgium~ ~ ~Brussels
  Antwerp~The city Antwerp~ ~ ~ ~Antwerp
</display_map>

<display_map height="150px" scrollwheelzoom="off" service="leaflet">

 Gent, Belgie~The city Ghent~Ghent is awesome~ ~ ~Ghent
 Brussel~The city Brussel~The capital of Belgium~ ~ ~Brussels
 Antwerp~The city Antwerp~ ~ ~ ~Antwerp

</display_map>