Changes between Version 7 and Version 8 of BluePrint/GIS/Markers
- Timestamp:
- 05/17/13 20:02:29 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrint/GIS/Markers
v7 v8 1 1 == GIS Markers == 2 3 2 Markers get used to display [wiki:BluePrintGISFeatureLayers Features]. 4 3 … … 13 12 14 13 In order to allow good maintenance we want to keep the markers named nicely & in their hierarchy. We want a script to copy these files into the uploads folder with the correct names & insert the records into the database to point at them.[[BR]] 15 Currently this is done for just the single default marker: {{{marker.png}}} (code in {{{mod els/_gis.py}}}) [[BR]]14 Currently this is done for just the single default marker: {{{marker.png}}} (code in {{{modules/s3db/gis.py}}}) [[BR]] 16 15 NB ID=1 is the default marker 17 16 {{{ 18 dir =os.path.join(request.folder,'static','markers')19 files =dir.list()17 dir = os.path.join(request.folder, "static", "markers") 18 files = dir.list() 20 19 etc (recursively) 21 20 }}} 22 21 23 22 (or could we have 2 types of markers defined in the DB? Static & Uploads) 23 24 We would also like to be able to support Markers held within {{{static/theme/<theme_name>/img}}} 24 25 25 26 We also want these enhancements to the marker/create routine: