In my Adobe Air 2 app, I'm adding a 3D marker (papervision3D basicView) in real-time to my 3D Map. the 3D object loads just fine, but not at the lat/long I set. However, when I use the mouse to pan/ move the map slightly, my marker jumps immediately to the correct lat/ long. What is going on? Is it a camera issue or something?
Thanks, Don basicView = new BasicView(); var cyl:Cylinder = new Cylinder(color); basicView.scene.addChild(cyl); cyl.z = 1000; basicView.startRendering(); markerOptions.hasShadow = false; markerOptions.iconAlignment = MarkerOptions.ALIGN_HORIZONTAL_CENTER | MarkerOptions.ALIGN_VERTICAL_CENTER; markerOptions.icon = basicView; var latLong:LatLng = new LatLng(messageLAT, messageLONG) createMarker(latLong); -- You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api-for-flash?hl=en.
