xml - as3 app location data google maps -
it still possible run google maps flash/as3. i've seen information suggesting either htmlloader , or stagewebview etc can bypass google api no longer can't find examples up.
i want able load xml file lists, places, locations , details covering target object if selected choice displays target , zooms in map coordinates.
thanks in advance if kind enough point me in right direction this.
i used code once : depends on location :
var webview: stagewebview = new stagewebview(); webview.stage = this.stage; webview.viewport = new rectangle(0, 0, stage.stagewidth, stage.stageheight - 200); btn.addeventlistener(mouseevent.click, locating) function locating(e: mouseevent): void { var lat:string = //location latitude var lng:string = //location longitude url = "http://maps.google.com/maps?q=" + lat + "," + lng; webview.loadurl(url); }
Comments
Post a Comment