Questions tagged [callouts]

103 questions
26
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,…
StijnSpijker
  • 827
  • 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
  • 4
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
  • 985
  • 4
  • 9
  • 19
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,707
  • 1
  • 34
  • 71
6
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
  • 238
  • 2
  • 9
6
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
  • 441
  • 2
  • 11
5
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
  • 85
  • 1
  • 6
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,526
  • 12
  • 45
  • 74
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,783
  • 3
  • 15
  • 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
  • 9
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,461
  • 1
  • 20
  • 37
3
votes
1 answer

How to Make A Callout Appear for MKOverlay Region?

I have used a gesture recognizer and the boundingRect for a given overlay to determine when a user taps on it. However I would now like to make a callout appear over the overlay region that the user taps, just like how it is done for annotations.…
Stunner
  • 11,108
  • 12
  • 79
  • 138
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. …
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
  • 4,879
  • 8
  • 38
  • 64
1
2 3 4 5 6 7