Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a Google maps api v2 incorporated into my app to provide an activity with a map fragment but I cant find relevant code to add a default location marker.For example when the activity is loaded it will be centered on a street with a marker,eg Old Trafford Stadium,Manchester.I have activated my permissions and got the api key and also added the relevant map fragment,This is my map class:

Java
<pre>package com.example.g00290342bvarley;

import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;

import android.os.Bundle;
import android.view.Menu;

public class MapGmit extends MapActivity {
	MapView map;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_map_gmit);
		map = (MapView)findViewById(R.id.map);
		map.setBuiltInZoomControls(true);
		
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.map_gmit, menu);
		return true;
	}

	@Override
	protected boolean isRouteDisplayed() {
		// TODO Auto-generated method stub
		return false;
	}

}
Posted

1 solution

Do you mean a default image for the marker,

http://econym.org.uk/gmap/custom.htm[^]


or the default place the marker should be?

There's no such thing -- you have to manually add each one.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900