We are in the process of integrating ALK maps into TM. We're running into an issue when zooming in and out. It appears the coordinates being passed to ALK to retrieve the map image are not reflective of the location on the map. When zooming to a location in the mid-west, the coordinates requested through ALK are located in the Gulf of Mexico or off the coast of Africa.
Example:
When I zoom in using the mouse wheel or drag the zoom slider, this is the next image:
I was able to track the URL being sent to the ALK rest webservice (using fiddler). The coordinates being passed match the resulting image. I'm trying to figure out how the coordinates are determined for the URL in SAP.
When I do a few address searches and place them as locations on the map. They appear to be in correct location in respect to each other, but they do not display in the correct location on the map.
It seems the root problem is that SAP is requesting the wrong coordinates from ALK.
URL for initial request (I truncated the rest of the URL for easy viewing, you can see the rest of it in the config link below):
pcmiler.alk.com/APIs/REST/v1.0/Service.svc/map?style=default&PT1=-180.000000000000%2C90.000000000000&PT2=180.000000000000%2C-90.000000000000&WIDTH=2048&HEIGHT=2048
Mid-level zoom (working mostly as expected)
pcmiler.alk.com/APIs/REST/v1.0/Service.svc/map?style=default&PT1=-45.000000000000%2C33.750000000000&PT2=112.500000000000%2C-45.000000000000&WIDTH=1792&HEIGHT=1792
Close zoom (things really go poorly here)
pcmiler.alk.com/APIs/REST/v1.0/Service.svc/map?style=default&PT1=0.000000000000%2C11.250000000000&PT2=78.750000000000%2C-28.125000000000&WIDTH=1792&HEIGHT=1792
URL Format from config
Any ideas?