is there any way to detect a place with GPS coordinates ? (as much as possible without map ) for example check if longitude and latitude is equal or near to these :
44 35′25″n 104 42′55″w
or
44.5903 -104.7153
then an alert pops up and display a message ! Thanks .
Yes you can detect when the device is near to a particular location(lat,lng) but you have to mention how near. You cannot do simple plain addition and subtraction with lat long values. You have to specify a radius or a window.
A good read, https://developer.apple.com/library/ios/documentation/userexperience/conceptual/LocationAwarenessPG/RegionMonitoring/RegionMonitoring.html
You can measure the distance between your "hardcoded" location and current users location with following:
Then you could do:
See https://developer.apple.com/library/mac/documentation/CoreLocation/Reference/CoreLocationDataTypesRef/Reference/reference.html for more info.
UPDATE:
typedef double CLLocationDistance
:A distance measurement (in meters) from an existing location.
This code will be use full for solving your problem.
Use this method
Hopes it might help