This topic is locked

google map not showing in the popup

3/14/2011 2:45:28 PM
ASPRunnerPro General questions
T
tester2011 author

Does anybody have the same issue when dependant details table with map set as details does not show in popup or inline?

T
tester2011 author 3/18/2011

is there anybody here?

Sergey Kornilov admin 3/21/2011

I guess nobody is having exactly the same issue.
If you need an answer from support contact support team directly at http://support.xlinesoft.com.

Sergey Kornilov admin 3/28/2011

This is a confirmed bug in ASPRunnerPro 6.3 build 7474. If you have master-details relationships where details are displayed in inline mode, master page doesn't have a map field, details page won't display the map as well.
To fix this add the following map initialization code to master page BeforeSQLQuery event:

setArrElement mapSettings,"id","My_map"

mapSettings("addressField") = "Address"

mapSettings("latField") = "Latitude"

mapSettings("lngField") = "Longitude"

mapSettings("width") = 1

mapSettings("height") = 1

mapSettings("zoom") = 13
DisplayMap(mapSettings)