You Are Here:

Community: Wiki

This page was last modified on 26 January 2009, at 10:50.

CS001286 - Calculating the distance between two locations in Flash Lite

From Forum Nokia Wiki



ID CS001286 Creation date January 26, 2009
Platform S60 5th Edition Tested on devices Nokia 5800 XpressMusic
Category Flash Lite Subcategory Location


Keywords (APIs, classes, methods, functions): Service.Location, location.Calculate()

Overview

This code snippet demonstrates how to calculate the distance between two locations using the Location Platform Service for Flash Lite supported from S60 5th Edition onwards.

Source

// Import Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "Calculate Distance";
 
// Create new Service object which has location data
var location = new Service("Service.Location", "ILocation");
 
// Define source distance
var sourceDistance = {Longitude:1, Latitude:0.49, Altitude:0.5};
var startPoint:String = new String("Longitude:1, Latitude:0.49, Altitude:0.5");
 
// Define destination distance
var destinationDistance = {Longitude:1, Latitude:0.5, Altitude:0.5};
var destinationPoint:String =
new String("Longitude:1, Latitude:0.5, Altitude:0.5");
 
// Define input parameters
var inParams = {
MathRequest:"FindDistance", DistanceParamSource:sourceDistance,
DistanceParamDestination:destinationDistance
};
 
// Define result value
var outParams = location.Calculate(inParams);
 
// Check if calculate success
if (outParams.ErrorCode == 0) {
var distance = outParams.ReturnValue;
text_txt.text += "Distance: "+distance+"\r\r";
text_txt.text += "from:\r"+startPoint+"\r\r";
text_txt.text += "to:\r"+destinationPoint;
} else {
var errorId = outParam.ErrorCode;
text_txt.text += "Error: "+errorId;
}

Postconditions

The distance between the source and destination is displayed.

Example application

The following sample application has been tested in Nokia 5800 XpressMusic (S60 5th Edition, Flash Lite 3.0). File:FlashLite Calculating The Distance.zip

See also

Related Wiki Articles

No related wiki articles found

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia 
RDF Facets: qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fFlashE5fE4citeE5fAPIE5fBridgeE5fInterfaceX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqfntypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qfnZtopicQUqfnTopicZflashQ qfnZtopicQUqfnTopicZflashE5fliteQ qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZtypeQUqfntypeZWikiContentQ qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqfntypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ