Iām also having same error:
ERROR /BuildRoot/Library/Caches/com.apple.xbs/Sources/VectorKit_Sim/VectorKit-1230.32.8.29.9/GeoGL/GeoGL/GLCoreContext.cpp 1763: InfoLog SolidRibbonShader:
ERROR /BuildRoot/Library/Caches/com.apple.xbs/Sources/VectorKit_Sim/VectorKit-1230.32.8.29.9/GeoGL/GeoGL/GLCoreContext.cpp 1764: WARNING: Output of vertex shader āv_gradientā not read by fragment shader
but when I use it in iPad it shows following error:
Great tutorial! I was wondering if there was a way to show the overlay outside of the circle when āOn Exitā is clicked. Kind of like how it does in the iOS reminders app. Thanks in advance!
Thanks for this awesome tutorial! I noticed a small little migration oversight from the old Swift 2.x code.
When you update the calloutAccessoryControlTapped method from the MK Delegate, the syntax for removeGeotification(_:) changed to remove(geotification:)
Thanks for this great tutorial. i changed the workflow of this app in accordance with my requirements. I am sending coordinate ,radius and notes from server and i want single geofenced region to work both for on exit and on entry events but there is little problem if i want to create 4 geofences its creating 8 geofences(each geofence is duplicating with the exact coordinate) and on test locations events are triggering properly but when checking with real locations its not working.
Quick response will be highly appreciated.Thanks!!!
Hi, I am following the Tutorial but I get this error in the story board "static table views are only valid when embedded in UITableViewController instances"how do I fix this
Thanks for this tutorial! One important thing to notice is this:
class GeotificationsViewController: UIViewController {
@IBOutlet weak var mapView: MKMapView!
var geotifications = [Geotification]()
let locationManager = CLLocationManager() // <-- This one
// ...
}
The location manager has to be retained for this to work (instance variable/property in this case). If you use a local variable for viewDidLoad, the authorization dialog will disappear automatically just after the location manager object is freed. Sometimes without interacting with it at all.
In Objective-C, you should use a strong property to retainā¦
Great tutorial. I am writing an app for navigating the blind. This program helps a lot. I need to enhance this so that as the person is moving, the ap should help the person stay on the predetermined course by giving cues if person moves too far from the predetermined lat/long. I am thinking I should have a circle around each lat/long to establish continuous geo-fencing.
This was awesome! Thank you for all your time and effort. Iām having a problem where DidEnterRegion is firing outside of my region. Iām running on my device and after a few minutes of loading the app, I start getting all my geofence alerts. Iām nowhere near any of the locations. Any ideas?
This tutorial is more than six months old, so questions are no longer supported at the moment for it. We will update it as soon as possible. Thank you! :]