Click here to Skip to main content
15,892,737 members
Articles / Mobile Apps

Using the Skyhook Wireless XPS Positioning Service in Managed Code

Rate me:
Please Sign up or sign in to vote.
4.95/5 (15 votes)
20 Jan 2009CPOL28 min read 89.1K   1.4K   57  
Wrapper and sample programs demonstrating the use of the Skyhook Wireless XPS SDK (hybrid position system using GPS, WiFi Positioning, and Celltower positioning)
using System;

using System.Collections.Generic;
using System.Text;

namespace J2i.Net.WiFiPositioning
{
    [Serializable()]
    public class StreetAddress
    {
        string _streetNumber;
        string _addressLine;
        string _city;
        string _postalCode;
        string _county;
        NameCode _country;
        string _province;
        NameCode _state;
        string _region;

        public string StreetNumber
        {
            get { return _streetNumber; }
            set { _streetNumber = value; }
        }

        public string AddressLine
        {
            set { _addressLine = value; }
            get { return _addressLine; }
        }

        public string City
        {
            get { return _city; }
            set { _city = value; }
        }

        public string PostalCode
        {
            get { return _postalCode; }
            set { _postalCode = value; }
        }

        public string County
        {
            get { return _county; }
            set { _county = value; }
        }
        public NameCode Country
        {
            get { return _country; }
            set { _country = value; }
        }

        public string Province
        {
            get { return _province; }
            set { _province = value; }
        }

        public NameCode State
        {
            get { return _state; }
            set { _state = value; }
        }

        public string Region
        {
            get { return _region; }
            set { _region = value; }
        }

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer
United States United States
I attended Southern Polytechnic State University and earned a Bachelors of Science in Computer Science and later returned to earn a Masters of Science in Software Engineering. I've largely developed solutions that are based on a mix of Microsoft technologies with open source technologies mixed in. I've got an interest in astronomy and you'll see that interest overflow into some of my code project articles from time to time.



Twitter:@j2inet

Instagram: j2inet


Comments and Discussions