Embedding a map in my app causes many HTTP requests to be produced, of the form:
http://gspe19.ls.apple.com/tile.vf?flags=1&style=1&size=2&scale=0&v=99999999&z=99&x=9999&y=9999&checksum=1&sid=999999&accessKey=XXXXXX
This is the tile data that is displayed on the map as one scrolls around. However, the use of HTTP is an information disclosure issue - anyone eavesdropping on the network can identify where you are looking at, and potentially man-in-the-middle attack the data to feed you incorrect information or try to trigger bugs.
Is there any way to force MapKit to send these requests over HTTPS instead? The API documentation is unclear on this.