mapping-component-package-jp 0.3.0 → 0.4.1
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/js/mapEncapsulation/mapOverlayManager.js +11 -9
package/package.json
CHANGED
|
@@ -3938,11 +3938,13 @@ export class MapOverlayManager {
|
|
|
3938
3938
|
} else {
|
|
3939
3939
|
ttdata += 'Capacity: n/a<br>';
|
|
3940
3940
|
}
|
|
3941
|
-
if(
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3941
|
+
if(countryIso2 == 'ZA') {
|
|
3942
|
+
if(parseInt(ttc[6]) > 0) {
|
|
3943
|
+
ttdata += 'Sagis Code: '+ttc[6];
|
|
3944
|
+
} else {
|
|
3945
|
+
ttdata += 'Sagis Code: n/a';
|
|
3946
|
+
}
|
|
3947
|
+
}
|
|
3946
3948
|
var mclickListener = marker.addListener('click', function (event) {
|
|
3947
3949
|
eventHandlers["GSMarkerOnClick"]({
|
|
3948
3950
|
type: 'SUCCESS',
|
|
@@ -4000,12 +4002,12 @@ export class MapOverlayManager {
|
|
|
4000
4002
|
});
|
|
4001
4003
|
}
|
|
4002
4004
|
|
|
4003
|
-
_this.RenderGSGPRegions = function(gpRegionsJson, gsJson, selectedRegion, offsetX, offsetY, vMapWidth, isDashboard) {
|
|
4004
|
-
GSGPRegions_DrawProductionRegions(gpRegionsJson, gsJson, selectedRegion, offsetX, offsetY, vMapWidth, isDashboard);
|
|
4005
|
+
_this.RenderGSGPRegions = function(gpRegionsJson, gsJson, selectedRegion, offsetX, offsetY, vMapWidth, isDashboard, countryIso2) {
|
|
4006
|
+
GSGPRegions_DrawProductionRegions(gpRegionsJson, gsJson, selectedRegion, offsetX, offsetY, vMapWidth, isDashboard, countryIso2);
|
|
4005
4007
|
}
|
|
4006
4008
|
|
|
4007
|
-
_this.RenderGSProvinces = function(provincesJson, gsJson, selectedProvince, offsetX, offsetY, vMapWidth, isDashboard) {
|
|
4008
|
-
GSProvinces_DrawProvinces(provincesJson, gsJson, selectedProvince, offsetX, offsetY, vMapWidth, isDashboard);
|
|
4009
|
+
_this.RenderGSProvinces = function(provincesJson, gsJson, selectedProvince, offsetX, offsetY, vMapWidth, isDashboard, countryIso2) {
|
|
4010
|
+
GSProvinces_DrawProvinces(provincesJson, gsJson, selectedProvince, offsetX, offsetY, vMapWidth, isDashboard, countryIso2);
|
|
4009
4011
|
}
|
|
4010
4012
|
|
|
4011
4013
|
_this.RenderGSWithinRadius = function(gsJson, fieldLat, fieldLng, offsetX, offsetY, radius) {
|