Changes between Version 9 and Version 10 of BluePrintGISAPI
- Timestamp:
- 04/27/10 06:56:04 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrintGISAPI
v9 v10 41 41 ==== Embed a map within a Page ==== 42 42 {{{ 43 gis.show_map(height =<default>,44 width =<default>,45 base_layer =<default>,46 internal_layers =None,43 gis.show_map(height = <default>, 44 width = <default>, 45 base_layer = <default>, 46 internal_layers = None, 47 47 internal_layer_menu = True, 48 markers =<default>,49 popup_url = <default>,50 external_layers =None,48 markers = <default>, 49 popup_url = <default>, 50 external_layers = None, 51 51 external_layer_menu = True, 52 map_center_lat = <default>, 53 map_center_long = <default>, 54 zoom = <default> 52 toolbar = False, 53 map_center_lat = <default>, 54 map_center_lon = <default>, 55 zoom = <default> 55 56 ) 56 57 """ … … 64 65 external_layers - list of strings - List of the WMS(???) to display on the map 65 66 external_layer_menu - bool - whether or not to display the menu to turn on and off the internal_layers 66 map_center_lat - ??? - Initial map center point 67 map_center_long - ??? - Initial map center point 67 toolbar - bool - whether or not to display the toolbar 68 map_center_lat - ??? - Initial map center point 69 map_center_lon - ??? - Initial map center point 68 70 zoom - int - the initial zoom level of the map 69 71