markers

Add marker on touched location using google map in android

How do I add a marker on a particular location in the map? I saw this code that shows the coordinates of the touched location. And I want a marker to pop or be shown in that same location everytime it is touched. How do I do this? public boolean onTouchEvent(MotionEvent event, MapView mapView) { if (event.getAction...

How to add Eclipse Task Tags programmatically (Eclipse Plugin development)?

Hi, I am developing an Eclipse Plugin. I want to add my custom Task Tag programmatically within the plugin. (Lets say DOTHIS) Later, i want to list the lines marked with DOTHIS tag in my custom taskView I know that it is done using the Eclipse UI from Project > Properties > Java Compiler > Task Tags > New. and then in the task view by ...

How do I get an IResource from an IEditorActionDelegate

I wrote an IEditorActionDelegate to fire from a context menu on a CompilationUnitEditor. From there I want to create a marker at the start line of the selected text. I have an ITextSelection, and an IEditorPart object. How can I get an IResource from those so that I can call resource.createMarker()? Thanks ...

Augmented Reality: Just marker recognition

Think about the usual augmented reality implementations: there's one or more marker, the software recognize the markers and usually shows something on top of them. I'm interested just in the first part. I need an algorithm, component, framework or class to determine if a given marker is present or not in a photo. Where can I start from...

Custom Map markers and custom backgrounds

I am trying to get the images to have transparent backgrounds so the map is not blocked by a square marker with an image in it. What image editor and what settings should I use to get this to work? I am trying to do some custom backgrounds for buttons and the same problem comes up: I get square corners and a background that does not sca...

MediaElement Markers Missing in WPF

I see that there is a Markers Property on the MediaElement, but this seems to be available to the Silverlight MediaElement, not the WPF MediaElement? Can you help me with what I'm missing? I'm trying to add Markers to a WPF MediaElement, to play a video and show popups based on the timeline. What should I be using in place of the Missi...

Retrieving the list of markers loaded from a ggeoxml

I need to get the list of markers after I load them on the map from a kml file with map.addOverlay(geoxml); I tried this geoxml = new GGeoXml("http://www.mydomain.com/mykmlfile.kml"); GEvent.addListener( geoxml, "load", function( ) { if ( geoxml.loadedCorrectly( )) { var markers = geoxml.overlayman.markers ...

how to create Map Markers on UIImageView?

Hi, I am using static images in Imageview to show some area. I want to place pin markers that we can create on google maps. What is a good way to implement this? Thanks in advance. ...

Silverlight 2 Video Player, passing a variable to the web page to manipulate via Javascript

I'm working on manipulating SL2 to be an audio player and has markers. However, when a marker is reached I'd like to manipulate the marker metadata via javascript. I see that he has allowed certain variables to be manipulated via javascript and I just want to add onto that. Any ideas? I have tried adding a scriptable member method in the...

How do I get markers I add to my stream to show up on the actual audio file in Windows Media Encoder 9?

I currently have my custom encoder sending script commands with the stream and when I save it, it preserves the commands sent at whatever time they were sent. However, my issue is that if I drop it into Expression Encoder or any other audio editor to view the markers/script commands, none show up. I know they exist because my custom Silv...

GoogleMaps API - How can I get a Markers Id after the Dragend event listener for said marker?

I have added several markers into MarkerManager and have kept tabs of them in arrays and basically pushed the markers into the arrays. I have dynamically created an individual DragEnd eventListener for each marker as it has been created. I need to be able to pull out a unique id of the marker or even the event listener itself would wor...

Plug-in Development: Creating Problem Marker for a Given Resource

Hello everyone. I seem to be having a problem with associating a problem marker with a resource; in my case, I'm trying to create a problem marker for the editor. To achieve this, I've tried to do the following: public class MyEditor extends TextEditor{ private ColorManager colorManager; public MyEditor() { super(); ...

Google Maps JS API v2 - Simple Multiple Marker Example

I'm fairly new to gmaps and Im using v2 because of the search function that I didnt find in v3. I've got an array of data that I want to loop through and put the markers on the map =) It seems really easy but I cant get it to work with v2 at all... Here is my what my array format and code looks like: function createMarkers(myLatLng,h...

How can I access the objects created by DirectionsRenderer in Google Maps V3

Hi, Is there an easy way to get access to the objects/properties of the markers and infowindows created by the DirectionsRenderer? (i.e. the "A" and "B" endpoints of the route) I'm looking to replace the "A" & "B" markers' infowindows with one that I've created (containing dynamic content) from another "non-route" marker. I've tried ...

How do I draw custom "Callout Bubbles" (the place name transparent-gray overlay) in an iPhone application using non-google maps ?

Hello, I'm building an iPhone application with a map inside (using route-me, not MapKit). I have some markers on the map, and I want to have an overlay - similarly to the google maps one - that appears once you click a marker: A black - a bit transparent - overlay, with a button inside, and a little triangle pointing to the marker th...

How can I show the Problem Marker properly? It is not displayed Text Editor and Problem View.

Hi everyone! I got many ideas from previous question (http://stackoverflow.com/questions/3178996/how-to-display-an-error-sign-on-the-package-when-the-package-has-wrong-informatio) But the Problem Marker is not displayed. My interested resource is XML file. So I add listener for PRE_BUILD means using following code. addResourceChange...

Blackberry Maps does not set markers correctly.

I'm calling the BB Maps (not google maps) and trying to set multiple markers, but somehow the marker in position 1 always fails to label correctly. When I hover over the first item in the xml, it highlights the second element and draws the quote box for that item. Yet, the marker for item in position 1 is correct. The code below draws th...

Google Maps API: Adding letters to my markers on my google map

I'm trying to add a letter to my marker and then have multiple markers (14 to be accurate) with letters. l have so far done this without success. I'm a complete novice with code and google API. Can you tell what code l need to add and where? Below is my code: <script src="http://maps.google.com/maps?file=api&amp;amp;v=2&amp;am...

Zoom and center a Google Map according to its markers (JavaScript API V3)

Hi all, I think the title is enough, I don't even see how to do this for the V2 and V1 API :/ Thanks :) ...

Get the last node of a Google maps XML file

I have been playing around with Google maps API v3 because v2 is depricated and no longer works for my site Instead of displaying every pointer in the xml file on the map, i want to display the current marker that would be relevant to that page. I have an events page so i want to show info about the event and display a map just for tha...