removed newMapView still accessing GPS?

[lua]

display.setStatusBar ( display.DefaultStatusBar )

myMap = native.newMapView( 10, 10, 300, 300 )

function removeMap ()
myMap: removeSelf (); myMap = nil
end

timer.performWithDelay (15000, removeMap)

[/lua]

I have noticed that whenever I open a newMapView, the gps icon on Samsung Galaxy 3 appears - I understand this since Google Maps is using gps data. But once the newMapView is removed, the gps icon still remains. Does this still mean that the supposedly removed object is still accessing gps info? The only way to “remove” the gps icon is to go into Application Manager and force the program to halt. What is happening here? I noticed that another user posted a similar question, but on an iPhone:

https://forums.coronalabs.com/topic/8051-turn-off-gps-indicator/

On a side note Google Maps is such a power hog.