Cargo: Difference between revisions

From Maps for MediaWiki
mNo edit summary
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 10: Line 10:
| format=map
| format=map
| icon=Red-marker.png
| icon=Red-marker.png
| scrollzoom=off
}}
}}
</pre>
</pre>
Line 17: Line 18:
| format=map
| format=map
| icon=Red-marker.png
| icon=Red-marker.png
| scrollzoom=off
}}
}}


Line 37: Line 39:
| format=map
| format=map
| icon=Red-marker.png
| icon=Red-marker.png
| scrollzoom=off
}}
}}


Line 58: Line 61:
== See also ==
== See also ==


* Maps has deeper integration with [[Semantic MediaWiki]]
* Maps also integrates with [[Semantic MediaWiki]], an alternative to Cargo
* [https://professional.wiki/en/articles/managing-data-in-mediawiki Compare Cargo and Semantic MediaWiki]
* [https://professional.wiki/en/articles/managing-data-in-mediawiki Compare Cargo and Semantic MediaWiki]

Latest revision as of 08:35, 15 May 2020

Cargo is an extension to MediaWiki that lets you store and query data in your wiki.

Since version 7.18, Maps integrates with Cargo by makings its map display format more powerful.

Syntax

{{#cargo_query:tables=Places
| fields=_pageName=Place,PlaceName, Coordinates
| format=map
| icon=Red-marker.png
| scrollzoom=off
}}

{{#cargo_query:tables=Places | fields=_pageName=Place,PlaceName, Coordinates | format=map | icon=Red-marker.png | scrollzoom=off }}

For more information, see the Cargo documentation on querying data.

Parameters

You can customize the map using the usual customization parameters that Maps supports. See customizing Leaflet maps and customizing Google Maps for more details.

At present it is only possible to use the default mapping service of your wiki by using format=map. By default this default is Leaflet, but you can change the default mapping service.

Using standard Cargo maps

While map replaces the standard Cargo display format for format=map with its own maps, you can still use all the standard Cargo display formats. This is done by using the mapping service specific formats such as format=openlayers.

Cargo query displayed by Maps, using format=map:

{{#cargo_query:tables=Places | fields=_pageName=Place,PlaceName, Coordinates | format=map | icon=Red-marker.png | scrollzoom=off }}

Cargo query displayed by Cargo, using format=openlayers:

{{#cargo_query:tables=Places | fields=_pageName=Place,PlaceName, Coordinates | format=openlayers | height=350 }}

Cargo query displayed by Cargo, using format=leaflet:

{{#cargo_query:tables=Places | fields=_pageName=Place,PlaceName, Coordinates | format=leaflet | height=350 | icon=Red-marker.png }}

See also