Question

On windows phone 8, is there any api to get the nearest cell tower information? like cell id, location area code etc...

Was it helpful?

Solution

Current Windows Phone 8 API doesn't provide these details.

OTHER TIPS

Any updates in WP 8.1?

The best I have found so far:

NetworkInterfaceList networkInterfaceList = new NetworkInterfaceList();
foreach (NetworkInterfaceInfo networkInterfaceInfo in networkInterfaceList)
{
    if (networkInterfaceInfo.InterfaceSubtype == NetworkInterfaceSubType.Cellular_HSPA)
    {...}
}

But it's not MCC, MNC, LAC, CellID level data.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top