2

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

2 Answers2

1

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

Mahender
  • 5,554
  • 7
  • 38
  • 54
0

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.