mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 19:09:57 +00:00
b1cd1306ef
* Allow width, height and maxZoom to be specified * Add images to city marker tiddlers * Initial support for custom popups * Custom popup templates for the US and Canadian example data * Popups should use the geomap as their parent widget This lets root widget messages work * Typo in default popup template * Clean up the use of popup templates * Allow GeoJSON features to be hidden via a checkbox * Popup template for volcano dataset * Add Natural Earth country data * Optimise marker SVG
21 lines
726 B
Plaintext
21 lines
726 B
Plaintext
title: GeoFeatures
|
|
tags: $:/tags/GeospatialDemo
|
|
|
|
This is a list of all the tiddlers containing ~GeoJSON feature collections in this wiki (identified by the tag <<tag "$:/tags/GeoFeature">>). A ~GeoJSON feature collection is a list of features, each of which consists of a geometry and associated metadata.
|
|
|
|
<ul>
|
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/GeoFeature]sort[caption]]">
|
|
<li>
|
|
<$checkbox
|
|
tiddler={{{ [[$:/config/GeospatialDemo/FeatureVisibility/]addsuffix<currentTiddler>] }}}
|
|
field="text" checked="show" unchecked="hide" default="show"
|
|
>
|
|
<<lingo Description>>
|
|
</$checkbox>
|
|
<$link>
|
|
<$transclude field="caption"><$view field="title"/></$view>
|
|
</$link>
|
|
</li>
|
|
</$list>
|
|
</ul>
|