diff --git a/source/Ox.UI/js/Map/Ox.Map.js b/source/Ox.UI/js/Map/Ox.Map.js index c6a1e29a..a480b887 100644 --- a/source/Ox.UI/js/Map/Ox.Map.js +++ b/source/Ox.UI/js/Map/Ox.Map.js @@ -401,6 +401,7 @@ Ox.Map = function(options, self) { lng: center.lng(), map: that, name: '', + type: 'feature', south: southwest.lat(), west: southwest.lng(), north: northeast.lat(), diff --git a/source/Ox.UI/js/Map/Ox.MapMarker.js b/source/Ox.UI/js/Map/Ox.MapMarker.js index 6fe9c4ff..9d6bbfa2 100644 --- a/source/Ox.UI/js/Map/Ox.MapMarker.js +++ b/source/Ox.UI/js/Map/Ox.MapMarker.js @@ -27,7 +27,7 @@ Ox.MapMarker = function(options) { borough: [255, 128, 0], street: [255, 255, 0], building: [255, 64, 128], - feature: [0, 192, 0], + feature: [0, 192, 0] }, areaSize = { 100: 10, // 10 x 10 m @@ -36,7 +36,7 @@ Ox.MapMarker = function(options) { 100000000: 16, // 10 x 10 km 10000000000: 18, // 100 x 100 km 1000000000000: 20, // 1,000 x 1,000 km - 100000000000000: 22, // 10,000 x 10,000 km + 100000000000000: 22 // 10,000 x 10,000 km }; if (options.map.options('showTypes')) {