* @see net.rim.device.api.command.CommandHandler#execute(ReadOnlyCommandMetadata,
* Object)
*/
public void execute(final ReadOnlyCommandMetadata metadata,
final Object context) {
final MapView mapview = new MapView();
mapview.setLatitude(4542349);
mapview.setLongitude(-7569792);
mapview.setZoom(3);
// Invoke maps application with specified MapView
Invoke.invokeApplication(Invoke.APP_TYPE_MAPS,
new MapsArguments(mapview));
}