HTML Image Map Creator QGIS Plugin: Unterschied zwischen den Versionen

Aus Geoinformation HSR
Wechseln zu: Navigation, Suche
K
K
Zeile 1: Zeile 1:
This '''SVG Image Map''' [[QGIS]] Python plugin generates an SVG image map with a background map from an active point or polygon layer in QGIS and current map view. It's based on the famous 'Html Image Map Plugin'.  
+
This '''SVG Image Map''' [[QGIS]] Python plugin generates an SVG image map with a background map given an active point or polygon layer and a current project and map view. The resulting files can be edited and since a template file is used, users who knows Jinia2 template syntax can modify the plugin output.
  
* A project by [[Geometa Lab]] HSR
+
* A project by [[Geometa Lab]] HSR based on the famous 'Html Image Map Plugin' from Richard Duivenvoorde
 
* Project Lead: Stefan Keller
 
* Project Lead: Stefan Keller
 
* Developed by: Severin Fritschi and Emil Sivro
 
* Developed by: Severin Fritschi and Emil Sivro
Zeile 17: Zeile 17:
 
== About ==
 
== About ==
  
Based on the nice plugin called [http://plugins.qgis.org/plugins/imagemap_plugin/ 'Html Image Map Plugin'] from Richard Duivenvoorde.
+
This plugin is based on the nice [http://plugins.qgis.org/plugins/imagemap_plugin/ 'Html Image Map Plugin'] from Richard Duivenvoorde and it uses SVG instead the of HTML5 map tag.  
  
tbd.
+
The output can be embedded by using the object tag like this:
 +
 
 +
  <object data="my_svg_image_map.svg" type="image/svg+xml" width="600" height="193">
 +
  <!-- For browsers without SVG support -->
 +
  <img src="fruity-icons.png" width="600" height="193" alt="Alternate to SVG image">
 +
  </object>
 +
 
 +
tbc.
  
 
[[Kategorie:QGIS-Plugin]] [[Kategorie:QGIS]] [[Kategorie:Python]] [[Kategorie:Software]]
 
[[Kategorie:QGIS-Plugin]] [[Kategorie:QGIS]] [[Kategorie:Python]] [[Kategorie:Software]]

Version vom 7. Mai 2017, 12:49 Uhr

This SVG Image Map QGIS Python plugin generates an SVG image map with a background map given an active point or polygon layer and a current project and map view. The resulting files can be edited and since a template file is used, users who knows Jinia2 template syntax can modify the plugin output.

  • A project by Geometa Lab HSR based on the famous 'Html Image Map Plugin' from Richard Duivenvoorde
  • Project Lead: Stefan Keller
  • Developed by: Severin Fritschi and Emil Sivro
 >> This is experimental work in progress! Expected an early release as QGIS plugin around 2nd quarter of 2017 << 

Important websites:

Install plugin by downloading from github in path "%userprofile%/.qgis2/python/plugins" under the name "svg_image_map".

tbd.

About

This plugin is based on the nice 'Html Image Map Plugin' from Richard Duivenvoorde and it uses SVG instead the of HTML5 map tag.

The output can be embedded by using the object tag like this:

 <object data="my_svg_image_map.svg" type="image/svg+xml" width="600" height="193">
 <img src="fruity-icons.png" width="600" height="193" alt="Alternate to SVG image">
 </object>

tbc.