Changeset 11603 in josm
- Timestamp:
- 2017-02-23T09:11:52+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/SyncEditorLayerIndex.groovy
r11599 r11603 424 424 } 425 425 } 426 } 426 } 427 427 def js = getShapes(j) 428 428 if(js.size()) { … … 543 543 static String getQuality(Object e) { 544 544 if (e instanceof ImageryInfo) return e.isBestMarked() ? "eli-best" : null 545 return e.get("properties").get("best") ? "eli-best" : null 545 return (e.get("properties").containsKey("best") 546 && e.get("properties").getBoolean("best")) ? "eli-best" : null 546 547 } 547 548 static String getIcon(Object e) {
Note:
See TracChangeset
for help on using the changeset viewer.