-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from fisuda/hardening/features
OpenLayers Map ja Widget v1.0.0
- Loading branch information
Showing
8 changed files
with
879 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<widget xmlns="http://wirecloud.conwet.fi.upm.es/ns/macdescription/1" vendor="FISUDA" name="ol-map-ja" version="1.2.4b1"> | ||
<widget xmlns="http://wirecloud.conwet.fi.upm.es/ns/macdescription/1" vendor="FISUDA" name="ol-map-ja" version="1.0.0"> | ||
<details> | ||
<title>OpenLayers Map</title> | ||
<title>OpenLayers Map ja</title> | ||
<email>[email protected]</email> | ||
<homepage>https://github.com/lets-fiware/ol-map-ja-widget</homepage> | ||
<image>images/catalogue.png</image> | ||
|
@@ -20,12 +20,100 @@ | |
</requirements> | ||
|
||
<preferences> | ||
<preference name="initialCenter" type="text" label="Initial Location" description="Decimal coordinates where map will be centered on load (e.g. `52, 5`). Leave this setting empty if you don't want to center the map at init. Remember to change the initial zoom level if you provide an initial location." default="" /> | ||
<preference name="initialZoom" type="text" label="Initial Zoom Level" description="Initial zoom level. From 1 to 22, where '1' represents the furthest level and '22' the maximum zoom level." default="3" /> | ||
<preference name="minzoom" label="Min Zoom" type="text" description="" default="4" /> | ||
<preference name="poiZoom" label="PoI Zoom" type="text" description="Zoom level applied when centering a PoI" default="17" /> | ||
<preference name="layerswidget" label="Layers Widget" type="text" description="Widget to use for allowing user to switch between layers" default="" /> | ||
<preference name="useclustering" label="Use Clustering" type="boolean" description="Mark this option to use clustering for displaying map features" default="false" /> | ||
<preference | ||
name="initialCenter" | ||
type="text" | ||
label="Initial Location" | ||
description="Decimal coordinates where map will be centered on load (e.g. `52, 5`). Leave this setting empty if you don't want to center the map at init. Remember to change the initial zoom level if you provide an initial location." | ||
default="135,35" | ||
/> | ||
<preference | ||
name="initialZoom" | ||
type="text" | ||
label="Initial Zoom Level" | ||
description="Initial zoom level. From 1 to 22, where '1' represents the furthest level and '22' the maximum zoom level." | ||
default="6" | ||
/> | ||
<preference | ||
name="minzoom" | ||
label="Min Zoom" | ||
type="text" | ||
description="" | ||
default="4" | ||
/> | ||
<preference | ||
name="poiZoom" | ||
label="PoI Zoom" | ||
type="text" | ||
description="Zoom level applied when centering a PoI" | ||
default="17" | ||
/> | ||
<preference | ||
name="layerswidget" | ||
label="Layers Widget" | ||
type="text" | ||
description="Widget to use for allowing user to switch between layers" | ||
default="" | ||
/> | ||
<preference name="maptype" label="Map Type" type="list" description="Map Type" default="OSM"> | ||
<option label="Open Street Map" value="OSM"/> | ||
<option label="CartDB Light" value="CARTODB_LIGHT"/> | ||
<option label="地理院 標準地図" value="GSI_STD"/> | ||
<option label="地理院 淡色地図" value="GSI_PALE"/> | ||
<option label="地理院 English" value="GSI_ENG"/> | ||
<option label="地理院 白地図" value="GSI_BLANK"/> | ||
<option label="地理院 写真" value="GSI_PHOTO"/> | ||
<option label="地理院 色別標高図" value="GSI_RELIEF"/> | ||
<option label="地理院 活断層図" value="GSI_AFM"/> | ||
</preference> | ||
<preference name="layer_swipe" label="Layer Swipe" description="map for swipe" type="list" default="Off"> | ||
<option label="Off" value="Off"/> | ||
<option label="Open Street Map" value="OSM"/> | ||
<option label="CartDB Light" value="CARTODB_LIGHT"/> | ||
<option label="地理院 標準地図" value="GSI_STD"/> | ||
<option label="地理院 淡色地図" value="GSI_PALE"/> | ||
<option label="地理院 English" value="GSI_ENG"/> | ||
<option label="地理院 白地図" value="GSI_BLANK"/> | ||
<option label="地理院 写真" value="GSI_PHOTO"/> | ||
<option label="地理院 色別標高図" value="GSI_RELIEF"/> | ||
<option label="地理院 活断層図" value="GSI_AFM"/> | ||
<option label="洪水浸水想定区域(想定最大規模)" value="GSI_SHINSUISHIN"/> | ||
<option label="洪水浸水想定区域(想定最大規模)_国管理河川" value="GSI_SHINSUISHIN_KUNI"/> | ||
<option label="津波浸水想定" value="GSI_TSUNAMI"/> | ||
<option label="土砂災害警戒区域(土石流)" value="GSI_DOSEKIRYUKEIKAIKUIKI"/> | ||
<option label="土砂災害警戒区域(急傾斜地の崩壊)" value="GSI_KYUKEISHAKEIKAIKUIKI"/> | ||
<option label="土砂災害警戒区域(地滑り)" value="GSI_JISUBERIKEIKAIKUIKI"/> | ||
<option label="土石流危険渓流" value="GSI_DOSEKIRYUKIKENKEIRYU"/> | ||
<option label="急傾斜地崩壊危険箇所" value="GSI_KYUKEISYACHIHOUKAI"/> | ||
</preference> | ||
<preference | ||
name="swipe_value" | ||
label="Swipe value" | ||
description="Swipe value" | ||
type="number" | ||
default="50" | ||
/> | ||
<preference | ||
name="overview" | ||
label="Overview" | ||
type="boolean" | ||
description="Overview Map" | ||
default="false" | ||
/> | ||
<preference | ||
name="scaleline" | ||
label="Scaleline" | ||
type="boolean" | ||
description="Scaleline" | ||
default="false" | ||
/> | ||
<preference | ||
name="useclustering" | ||
label="Use Clustering" | ||
type="boolean" | ||
description="Mark this option to use clustering for displaying map features" | ||
default="false" | ||
/> | ||
</preferences> | ||
|
||
<wiring> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.