Contents
Insert a static Google Map as an image
Description
This macro uses the Google Map API to include static images of maps. Static means that it is only an image without any user interaction and not the usual feature-rich dynamic map on https://www.google.com/maps. No Javascript is needed to display the map image.
For a dynamic Google map use the GoogleMapMacro.
Please note that the maximum size supported by Google is 640x640 pixels. If a bigger width or height is requested, it will be reduced to 640px.
The macro should work both with Trac 0.11 and 0.12. At the moment there is only a 0.11 directory, which can also be used for Trac 0.12. The AdvParseArgsPlugin is used to allow for quoted argument values and must also be installed.
Bugs/Feature Requests
Existing bugs and feature requests for GoogleStaticMapMacro are here.
If you have any issues, create a new ticket.
defect |
3 / 3 |
---|
Download
Download the macro as a zipped file.
The plugin is also available on PyPI.
Source
You can check out GoogleStaticMapMacro from here using Subversion, or browse the source with Trac.
Installation
General instructions on installing Trac plugins can be found on the TracPlugins page.
To enable the macro put the following into your trac.ini
file, which is located in the config
directory of your Trac installation:
[components] tracgooglestaticmap.* = enabled
Configuration
To configure this plugin, add the following to your trac.ini
file:
[googlestaticmap] api_key = <Your Google API key (long hex number)> # not required for API v2 # Optional settings: #default_size = 300x300 #default_language = de #default_api_version = <1 or 2> # should be 2 for newer installations. Set to 1 if you want to keep older macros unchanged
You need to restart Trac to reread the macro file and the configuration file.
Upgrade from older Versions
The current version of the macro uses the Google Static Map API v2, while older versions used API v1. To upgrade see
here.
The syntax provided by Google has changed between the API versions. To provide the newer features without breaking existing macros, both API versions are supported using the api
key.
The older syntax can still be used with newer versions of the macro by setting api=1
either as a macro argument ([[GoogleStaticMap(api=1,<old syntax>)]]
) or using the global configuration option default_api_version
.
Please note, that since v2 an API key is no longer required by Google. The API v1 still requires a Trac server specific Google Map API key which is provided by Google for free.
Usage and Examples
This documentation describes the syntax for the macro v1.x which uses Google's API v2 (see #Upgrade). The older syntax is still supported using the api=1
argument. See an older version of this wiki page for the old syntax. Mixing of older and newer syntax is not supported.
Parameters
The macro accepts the official Google Static Map argument as well as a few internal arguments:
- title
- Sets the HTML title of the map image.
- api
- Sets the API version to be used. By default set to
2
. To reuse the older macros, setapi=1
as mentioned earlier. - key
- Sets the API key if not set globally in the config file. Deprecated for macro v1.x / Google API v2.
All map locations (center, markers, path) can now be given as address or geographic coordinates (latitude,longitude). Please note that addresses and coordinates must be quoted using double-quotes ("
) when they include a comma. This is always the case with coordinates. The old macro syntax used colons (:
) as substitutes, which is no longer supported in the new syntax.
For example:
[[GoogleStaticMap(center="51.477222,0", zoom=14, size=400x400)]] [[GoogleStaticMap(center="Greenwich", zoom=14, size=400x400)]]
will both result in the following map image:
Markers
You can add markers to the static map using the markers
argument. The format is markers=style settings|first location|next location|...
(https://developers.google.com/maps/documentation/staticmaps/intro?csw=1&safe=on), for example: markers="size:mid|label:A|color:blue|50.805935,10.349121"
, creates a blue marker labeled with 'A' at 50.805935,10.349121. Again also addresses can be used to specify locations.
The whole value must be quoted if any commas are included. Multiple markers
arguments can be given to add markers with different styles.
So the following example:
[[GoogleStaticMap(center="50.805935,10.349121", zoom=5, size=400x400, markers="color:blue|label:A|50.805935,10.349121", markers="color:green|label:B|50.000000,10.000000|Berlin,Germany", markers="color:yellow|label:C|Regensburg,Germany")]]
will result in the following map image:
Paths
Paths between locations can be added using the path
argument which has basically the same syntax as markers
, except different styles are supported. See the Google documentation for details.
Processor Syntax
While Tracs normal macro syntax ([[Macro(key=value, key=value)]]
) is nice for smaller arguments lists, it is getting messy for longer lists.
This macro now also supports the so called wiki processor syntax ({{{ <linebreak> #!Macro <linebreak> content <linebreak> }}}
) to allow for multiple lines of arguments.
In this case a line break will be read as a comma:
{{{ #!GoogleStaticMap key1=value1 key2="value 2, with comma" key3=value3, key4=value4 }}}
is identical to:
[[GoogleStaticMap(key1=value1, key2="value 2, with comma", key3=value3, key4=value4)]]
Example:
{{{ #!GoogleStaticMap center="Germany" path="Munich|Berlin|Cologne|Munich" markers="label:M|Munich" markers="label:B|Berlin" markers="label:K|Cologne" markers="label:H|color:orange|Hamburg|Hannover" markers="size:small|color:green|Mannheim|Straubing|Münster" size=250x300 }}}
produces:
Recent Changes
- 17137 by rjollos on 2018-04-16 19:58:39
-
TracGoogleStaticMapMacro 1.1: Conform to PEP8
- 15264 by rjollos on 2016-02-11 04:22:34
-
Remove unnecessary svn:mime-type on py files
svn:mime-type was set to "plain" for many files.
- 8571 by martin_s on 2010-08-31 18:02:58
-
- 0.11/setup.py
- Increaded version number to indicate major change due to Googles API change.
- 0.11/tracgooglestaticmap/macro.py
- Fixed colon substitution for markers for
api=1
.
(more)
Author/Contributors
Author: martin_s
Maintainer: Martin Scharrer
Contributors: