Package net.rim.device.api.lbs.maps.model

Examples of net.rim.device.api.lbs.maps.model.MapPoint


    protected void onUiEngineAttached(final boolean attached) {
        super.onUiEngineAttached(attached);
        if (attached) {
            // Set the location of the map to some random location
            _map.getMapField().getAction().setCenter(
                    new MapPoint(ORIGIN_LATITUDE, ORIGIN_LONGITUDE));

            // Set the zoom level of the map
            _map.getMapField().getAction().setZoom(ZOOM_LEVEL);

            // Now that we know the map is up and running, start the "service"
View Full Code Here

TOP

Related Classes of net.rim.device.api.lbs.maps.model.MapPoint

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.