I debug my ISAPI dll using execution parameter in delphi Host application = w3wp.exe and parameter -debug.
This is working fine in allmost all configuration but ...
When i use GroundOverlay with french language ( DecimalSeparator = "," (comma)) the rendering of GroundOverlay bounds is bad , latitude and longitude values are expressed with "," and browser report a bad script syntax ( SyntaxError: missing : after property id )
- Code: Select all
,groundoverlay:{options:{url:"http:\/\/gdv.assapan.fr\/meteo\/rainTMC.png",opts:{opacity:0,7},bounds:{sw:{lng:-11,,lat:38,3},ne:{lng:17,6,lat:55,}}}}});
same with ISAPI not in debugging mode
- Code: Select all
groundoverlay:{options:{url:"http:\/\/gdv.assapan.fr\/meteo\/rainTMC.png",opts:{opacity:0.7},bounds:{sw:{lng:-11.,lat:38.3},ne:{lng:17.6,lat:55.}}}}});
If I change decimalseparator to dot "." evreything works fine !!
Do you have a clue of what is causing that ? This way of debugging is much more convenient
