mapping-component-package-jp 0.0.39 → 0.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2820,7 +2820,7 @@ export class MapOverlayManager {
|
|
|
2820
2820
|
|
|
2821
2821
|
function Display_DrawGPRegions(locationsJson, selectedRegion, offsetX, offsetY) {
|
|
2822
2822
|
var polygon = null;
|
|
2823
|
-
locations = locationsJson;
|
|
2823
|
+
var locations = locationsJson;
|
|
2824
2824
|
|
|
2825
2825
|
locations.forEach(function (location) {
|
|
2826
2826
|
if(location.id == selectedRegion || selectedRegion === 0) {
|
|
@@ -2847,7 +2847,7 @@ export class MapOverlayManager {
|
|
|
2847
2847
|
|
|
2848
2848
|
function Display_DrawGSByRegion(locationsJson, offsetX, offsetY, vMapWidth) {
|
|
2849
2849
|
|
|
2850
|
-
locations = locationsJson;
|
|
2850
|
+
var locations = locationsJson;
|
|
2851
2851
|
bounds = new google.maps.LatLngBounds();
|
|
2852
2852
|
var mapPanned = false;
|
|
2853
2853
|
|
|
@@ -2920,7 +2920,6 @@ export class MapOverlayManager {
|
|
|
2920
2920
|
}
|
|
2921
2921
|
|
|
2922
2922
|
function GPRegions_DrawProductionRegions(gpRegionsJson, gsByRegionJson, selectedRegion, offsetX, offsetY, vMapWidth, isDashboard) {
|
|
2923
|
-
locations = gpRegionsJson;
|
|
2924
2923
|
|
|
2925
2924
|
mapListeners_clear();
|
|
2926
2925
|
polygonListeners_clear();
|
|
@@ -3016,10 +3015,6 @@ export class MapOverlayManager {
|
|
|
3016
3015
|
|
|
3017
3016
|
_this.NDVI_AddOverlay_DEA = function (locationJson, ndviTileURL, validGMTiles, eosLocationCropperRefId, eosViewId, spinnerURL, spinnerLat, spinnerLon, paletteId, colorMapTypeIdValue, isFullView, onComplete) {
|
|
3018
3017
|
|
|
3019
|
-
//console.log('_this.NDVI_AddOverlay_DEA');
|
|
3020
|
-
//console.log(locationJson);
|
|
3021
|
-
//console.log('zoom at entry: '+map.getZoom());
|
|
3022
|
-
|
|
3023
3018
|
var locationParsed = locationJson;
|
|
3024
3019
|
var location = locationParsed[0];
|
|
3025
3020
|
var centerLat, centerLng;
|