Questions tagged [callouts]
107 questions
27
votes
2 answers
How to open call out MKAnnotationView programmatically? (iPhone, MapKit)
I want to open up the callout for an MKPinAnnotationView programmatically. Eg I drop 10 pins on the map, and want to open up the one closest to me. How would I go about doing this?
Apple has specified the 'selected' parameter for MKAnnotationView's,…

Stijn
- 858
- 2
- 12
- 21
14
votes
1 answer
How to Hide MKAnnotationView Callout?
i'm trying to hide an AnnotationView without touching the pin, is the possible?
Thanks!
for (id currentAnnotation in self.mapView.annotations) {
if ([currentAnnotation isKindOfClass:[MyAnnotation class]]) {
}
}

user345711
- 181
- 2
- 5
13
votes
2 answers
What are the parameters for the Salesforce WebServiceCallout.invoke method?
I would like to know the parameters for the invoke method used by Salesforce to invoke remote web services. I have a service that I'm suposed to be able to invoke, but the service WSDL does not define the security requirements, so I'm hoping I can…

Jeremy
- 1,015
- 4
- 11
- 20
8
votes
1 answer
markdown source code callouts like asciidoctor?
I really like the callouts from asciidoctor, see http://asciidoctor.org/docs/asciidoc-syntax-quick-reference/, and search in page "Code block with callouts", click "view result". But I use Ipython notebook for writing, and Markdown is the choice.…

user3015347
- 503
- 3
- 12
6
votes
1 answer
How to open callout of annotation on map automatically, when map first loads?
I have a navigation based application for the iPhone that I am working that allows the user to view a selection from a table, on a map. I have an annotation that pinpoints the user's selected location on the map. As per normal behaviour, if the…

syedfa
- 2,801
- 1
- 41
- 74
6
votes
1 answer
How do I make a pin annotation callout in Swift?
I tried to make the callout work but that didn't happen as I did something wrong in my prepare for segue. I want to know how to be able to make a pin annotation callout to another view?

BOB
- 105
- 1
- 7
5
votes
3 answers
Communication between kernel-mode and user-mode application
I have built a WFP callout driver which runs in kernel mode.
Now, I'm trying to figure out how to communicate between this driver and my GUI application which runs in user-mode. Any ideas?
Exactly what I want is something like this:
The callout…

henrikpersson
- 338
- 2
- 9
4
votes
2 answers
Looking for an image tooltip jQuery plugin
I've been looking for a jQuery plugin that lets me have an image and mark certain areas on it where if you hover over it it'll show a tooltip with information about it. Let's say I have an image of a living room I'd like to be able to mark the sofa…

Javier Villanueva
- 3,886
- 13
- 48
- 80
4
votes
4 answers
iphone - MKMapView callout doesn't show on iPhone 4 with iOS 4.1
I have a problem with MKMapView. I add annotations like that:
// set up new points
for(int i = 0; i < [_locations count]; i++) {
PPlace * place = [_locations objectAtIndex:i];
PlaceAnnotation * placeAnnotation = [[PlaceAnnotation alloc]…

Marcin
- 1,823
- 3
- 16
- 18
3
votes
2 answers
How to save the selected MKAnnotation?
I have an app that has a mapview, and it shows 20 pins (from an Array) on the map. When the user clicks on it, it can show a bubble with a right accessory button.
Here come my problem: How do I know which pin was pressed?
I heard something about…

RobRoyRyan
- 45
- 1
- 10
3
votes
2 answers
Custom MKAnnotationView - How to capture touches and NOT dismiss the callout?
I have a custom MKAnnotationView subclass. It is showing the view exactly as I want it to. In that view, I have a button. I want to capture events on the button to perform an action. This works just fine.
However, I do NOT want the callout to be…

thephatp
- 1,479
- 1
- 20
- 37
3
votes
1 answer
How to resize callout bubble after resetting title/subtitle
I created an MKAnnotation name PushPin which has a title and subtitle. I want to be able to dynamically change the title at a later time. I'm close so I'd rather not have to make a whole new AnnotationView, but if I have to I guess that's ok too. …

Ben Holland
- 31
- 2
3
votes
2 answers
Swift - passing data from mapkit annotation to another view by disclosure button
I have a map with annotations, after clicking the pin, the callout shows with title of annotation and a disclosure button. When I tap button the segue is triggered and I move to another view. How to determine what annotation was clicked, or pass the…

Leszek
- 71
- 1
- 7
3
votes
2 answers
set callout image mapbox android
in iOS you can easily set a callout for your markers by calling:
[marker setCanShowCallout:YES];
[marker setRightCalloutAccessoryView:YOUR_BUTTON];
But I can't find this functionality for the Mapbox Android SDK. I do have a listener now which…

Mark Molina
- 5,057
- 8
- 41
- 69
3
votes
0 answers
iOS7 style mapview callout segue in the callout (calloutAccessoryControlTapped, UIButtonTypeDetailDisclosure)
I have mapview on iPad with annotations and callouts, each callout also has rightCalloutAccessoryView with detail disclosure button. I see the stock Maps app performs segue for callout details within the callout's object. It first performs a…

Martin Koles
- 5,177
- 8
- 39
- 59