Re: MKMapView pin dragging question

2017-10-25 Thread Alex Zavatone
Hmmm. I wonder if there is a delegate method that is being missed. I’ll have to look tomorrow if you haven’t solved it. In the meantime… https://stackoverflow.com/questions/30021305/mkannotation-pin-wont-drag-even-though-set-as-draggable annotation.title? It appears to be set in your supplie

Re: MKMapView pin dragging question

2017-10-25 Thread Marco S Hyman
> On Oct 25, 2017, at 6:11 PM, Alex Zavatone wrote: > > This might be simple. Please correct me if I am wrong, I think the last time > I dealt with this was in 2012. > > Isn’t there a method or property such as canDragPin that you have to override > or implement in your subclass? I’m sett

Re: MKMapView pin dragging question

2017-10-25 Thread Alex Zavatone
This might be simple. Please correct me if I am wrong, I think the last time I dealt with this was in 2012. Isn’t there a method or property such as canDragPin that you have to override or implement in your subclass? > On Oct 25, 2017, at 8:08 PM, Marco S Hyman wrote: > > I'm not sure wh

Re: MKMapView userLocation heading & a dropped pin

2017-06-23 Thread Eric E. Dolecki
Thank you :) On Fri, Jun 23, 2017 at 2:17 PM Marco S Hyman wrote: > > I am trying to determine whether or not the pin is in front, left, right, > > or behind the user. I am going to perform calculations within > > > > func locationManager(_ manager: CLLocationManager, didUpdateLocations > > loca

Re: MKMapView userLocation heading & a dropped pin

2017-06-23 Thread Marco S Hyman
> I am trying to determine whether or not the pin is in front, left, right, > or behind the user. I am going to perform calculations within > > func locationManager(_ manager: CLLocationManager, didUpdateLocations > locations: [CLLocation]) { > > I already determine distance. How might I go about

Re: MKMapView, screen grabs and other discussions

2013-11-29 Thread Graham Cox
Thanks again, works perfectly for my needs. I guess that its existence indicates that you can use it freely, so the legality question is moot. —Graham On 29 Nov 2013, at 3:21 pm, Graham Cox wrote: > Aha! I hadn’t spotted that class. Looks very promising… I’ll check out the > videos also.

Re: MKMapView, screen grabs and other discussions

2013-11-29 Thread Graham Cox
Aha! I hadn’t spotted that class. Looks very promising… I’ll check out the videos also. cheers, Graham On 29 Nov 2013, at 2:21 pm, Roland King wrote: > Does MKMapSnapshotter do what you want? There's a bunch of stuff about maps > in OSX in the WWDC 2013 videos, I think I remember seeing that

Re: MKMapView, screen grabs and other discussions

2013-11-29 Thread Roland King
Does MKMapSnapshotter do what you want? There's a bunch of stuff about maps in OSX in the WWDC 2013 videos, I think I remember seeing that there. On 29 Nov, 2013, at 9:14 pm, Graham Cox wrote: > Hi all, > > What I want to do is to use MapKit to get imagery of a particular region, > display i

Re: MKMapView compositing

2012-11-05 Thread Vincent Habchi
Eve, > When you have alpha transparency you can either blend the aerial tiles into > the map view or blend the entire map view into the aerial tiles. Either way, > I think, you can get something that looks good. Semitransparent overlays > consisted of aerial tiles might actually work, and it

Re: MKMapView compositing

2012-11-05 Thread Evadne Wu
When you have alpha transparency you can either blend the aerial tiles into the map view or blend the entire map view into the aerial tiles. Either way, I think, you can get something that looks good. Semitransparent overlays consisted of aerial tiles might actually work, and it is in the same

Re: MKMapView compositing

2012-11-05 Thread Vincent Habchi
Hi Eve, > Use overlays. Look into ClassicMap: > https://github.com/kishikawakatsumi/ClassicMap which is doing about the same > thing using likely illegally obtained Google tiles. I’ll have a look. It is actually displaying maps *over* a cartographic background (and not some cartographic layer

Re: MKMapView compositing

2012-11-04 Thread Evadne Wu
Use overlays. Look into ClassicMap: https://github.com/kishikawakatsumi/ClassicMap which is doing about the same thing using likely illegally obtained Google tiles. Best, Eve On Nov 4, 2012, at 3:15 AM, vincent habchi wrote: > Hi folks, > > for a demo app, think of it as some kind of “geogr

Re: MKMapView annotation changes not being reflected on map display. Baffling.

2012-07-31 Thread Gavin Stokes
Never mind. The problem was an incomplete array of annotations I was maintaing. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)li

Re: MKMapView: Can't keep annotations from flashing during an update. Ideas?

2012-06-29 Thread Gavin Stokes
On Tue, Jun 26, 2012 at 7:38 PM, Joe Wollard wrote: > Out of curiosity, why are you manually removing them in the first place? > MKMapView should be handling that logic for you as I understand it. If its > for performance, the docs say to make sure you dequeue the MKAnnotationView > instead of cr

Re: MKMapView: Can't keep annotations from flashing during an update. Ideas?

2012-06-27 Thread Conrad Shultz
On Jun 26, 2012, at 7:38 PM, Joe Wollard wrote: > Out of curiosity, why are you manually removing them in the first place? > MKMapView should be handling that logic for you as I understand it. If its > for performance, the docs say to make sure you dequeue the MKAnnotationView > instead of cre

Re: MKMapView: Can't keep annotations from flashing during an update. Ideas?

2012-06-26 Thread Joe Wollard
Out of curiosity, why are you manually removing them in the first place? MKMapView should be handling that logic for you as I understand it. If its for performance, the docs say to make sure you dequeue the MKAnnotationView instead of creating a new one when possible so that it can reuse the vie

Re: MKMapView

2010-08-05 Thread Gerriet M. Denkmann
On 6 Aug 2010, at 00:03, Fritz Anderson wrote: > On 5 Aug 2010, at 2:57 AM, Gerriet M. Denkmann wrote: > >> I have an MKMapView which sometimes does: >> [ mapView addSubview: selectorView ]; >> and selectorView contains a UIPickerView. > > I'm not sure why you feel it necessary to drop you

Re: MKMapView

2010-08-05 Thread Fritz Anderson
On 5 Aug 2010, at 2:57 AM, Gerriet M. Denkmann wrote: > I have an MKMapView which sometimes does: > [ mapView addSubview: selectorView ]; > and selectorView contains a UIPickerView. I'm not sure why you feel it necessary to drop your selector view directly into the map view? My experience