How to add custom markers in flash ? I`ve tried ... var image1 = 'pa.png'; ... var markerOptions:MarkerOptions = new MarkerOptions(); markerOptions.icon = image1 as Bitmap; markerOptions.iconAlignment = MarkerOptions.ALIGN_HORIZONTAL_CENTER; markerOptions.iconOffset = new Point(2,2);
var marker:Marker = new Marker(new LatLng(loadedData[j][9],loadedData[j][10]),markerOptions); map.addOverlay(marker); ... And is not working , any suggestions for me? -- 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.
