Package net.rim.blackberry.api.maps

Examples of net.rim.blackberry.api.maps.MapView


             * @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));
            }
View Full Code Here

TOP

Related Classes of net.rim.blackberry.api.maps.MapView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.