Can anybody give me any tips on how to highlight more than one address in google maps from within vfp?
I found this code on the internet which displays google maps and highlights one address (Many thanks to whoever posted it), but how can I put a marker on other addresses in the area? i.e. it displays cAddress well enough but I would like to show cAddress2/3 etc. on the same map.
Also.. This code puts up a little marker on the map saying "Address" 5 Parkway or whatever, I wld love to change that "Address" to my own string, "Bar Cuba Libre" 5 Parkway or whatever...
*--------------------------------------------
* Place we are looking for
*--------------------------------------------
*cAddress = "769 Youngs Hill Rd, Easton, PA"
cAddress = "5 parkway, camden, london, england"
*cAddress2 = "10 camden high street, camden, london, england"
LOCAL loIE
*--------------------------------------------
* Open IE
*--------------------------------------------
loIE=CREATEOBJECT('internetexplorer.application')
*--------------------------------------------
* Navigate to Google's Map site. (way cool place).
*--------------------------------------------
loIE.Navigate( " ","+") )
*
* Use this address format for directions:
*
*--------------------------------------------
* Make visible
*--------------------------------------------
loIE.VISIBLE = .T.
T.I.A. Sorry if its a dumb question! but it's bugging me
I found this code on the internet which displays google maps and highlights one address (Many thanks to whoever posted it), but how can I put a marker on other addresses in the area? i.e. it displays cAddress well enough but I would like to show cAddress2/3 etc. on the same map.
Also.. This code puts up a little marker on the map saying "Address" 5 Parkway or whatever, I wld love to change that "Address" to my own string, "Bar Cuba Libre" 5 Parkway or whatever...
*--------------------------------------------
* Place we are looking for
*--------------------------------------------
*cAddress = "769 Youngs Hill Rd, Easton, PA"
cAddress = "5 parkway, camden, london, england"
*cAddress2 = "10 camden high street, camden, london, england"
LOCAL loIE
*--------------------------------------------
* Open IE
*--------------------------------------------
loIE=CREATEOBJECT('internetexplorer.application')
*--------------------------------------------
* Navigate to Google's Map site. (way cool place).
*--------------------------------------------
loIE.Navigate( " ","+") )
*
* Use this address format for directions:
*
*--------------------------------------------
* Make visible
*--------------------------------------------
loIE.VISIBLE = .T.
T.I.A. Sorry if its a dumb question! but it's bugging me