Questions tagged [callouts]

103 questions
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
  • 4,937
  • 8
  • 33
  • 56
3
votes
2 answers

Map callout expansion animation like the one in Maps when the disclosure button is pressed

When selecting the disclosure button on a callout, the callout animates to the slide over and expand into larger area with more information. Besides making this component from scratch, does anyone know how to make annotation callouts do this?
Biclops
  • 2,487
  • 1
  • 24
  • 51
2
votes
0 answers

Why am I getting memory leaks iOS5 ARC project on UICalloutView?

I'm getting memory leaks on an ARC iOS5 project which appear to be from my map annotation callouts. When I track the leaks they appear to be internal to QuartzCore, MapKit, UIKit -- none of them track back into my code. Is this a known bug in iOS5…
Alan Moore
  • 6,347
  • 6
  • 50
  • 66
2
votes
1 answer

show html5 validation callout popup manually

I want to show html5 validation callout popup manually. I want to check if user enters wrong string pattern in text box then want to show validation callout same as we get by default in html5 when use flag required="required" in text box.
Harry Joy
  • 55,133
  • 29
  • 149
  • 204
2
votes
1 answer

show map callout through code in iPhone

I have tried several things but am unable to solve it out. I have 10 custom annotations on the map depending upon the area visible. Now I have 2 buttons next and previous. Clicking on which the callout of annotation must get displayed. i.e if i…
Suresh Varma
  • 9,743
  • 1
  • 58
  • 91
2
votes
0 answers

Callout AccessoryView on default user location pin

Is it possible to add a CalloutAccessoryView to the default pin (pulsing blue dot, with accuracy cirle) when showing the user location. In the code below you create your own pin and add the 'pinView.rightCalloutAccessoryView' when the annotation is…
user773805
  • 21
  • 1
2
votes
1 answer

custom map annotation callout - how to control width

I've successfully implemented the custom map annotation callout code from the asynchrony blog post . (When user taps a map pin, I show a customized image instead of the standard callout view). The only remaining problem is that the callout occupies…
Rayfleck
  • 12,116
  • 7
  • 44
  • 72
2
votes
1 answer

iOS12 Beta MapKit issue: Changing annotation title in didSelect method

I am changing the title of the annotation inside of the mapView didSelect function: override public func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) and this has been causing a lot of issues with callouts randomly appearing and…
rdd
  • 21
  • 2
2
votes
1 answer

Extracting MKAnnotation Callout's Title When Sender

Ok guys, so I have a map view with annotations and when tapped, they display callouts with a disclosure icon on the right. When tapped, this function is called: - (void)showDetails:(id)sender { NSLog(@"showDetails: called!"); NSLog(@"sender:…
Stunner
  • 11,108
  • 12
  • 79
  • 138
2
votes
1 answer

didSelectCustomPOI is fired only when the map is zoomed in

When tapping on a custom poi on the map, acalloutView should appear. ThedidSelectCustomPOI delegate method gets executed and thecalloutView appears only when the map is zoomed in very close to the custom poi. I'm getting this issue since i've…
Mo Al Waili
  • 180
  • 1
  • 9
2
votes
1 answer

iPhone MKMapView force callout bubble

Is it possible to force the call out bubble to be open all the time? I tried putting the following code in didAddAnnotionViews: for (id currentAnnotation in mapView.annotations) { [mapView selectAnnotation:currentAnnotation…
Mark
  • 12,916
  • 16
  • 70
  • 94
2
votes
3 answers

Microsoft Dynamics CRM 4.0 using 3.0 Callouts and Workflows

We are migrating to CRM 4.0 from 3.0. In this process, we have had our data migrated from our existing CRM 3.0 instance to a new CRM 4.0 instance. This has been going all well and good until I got to the point of installing our existing callouts and…
Moose
  • 5,144
  • 3
  • 30
  • 45
2
votes
1 answer

Apex type not found for element : userDetails

I m getting the following response from the webservice
2
votes
1 answer

Placing callouts over bootstrap carousel

i would like an effect like on this site http://demo.grandpixels.com/ where the divs .callout are layered over the carousel. I'm trying to do this in bootstrap. But my divs always go under the carousel. I've tried setting z-index of the callouts but…
Dante
  • 525
  • 3
  • 8
  • 21
2
votes
1 answer

MKAnnotationView not displaying the title

I am setting the title for two MKAnnotationView using the following code: -(MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation: (id )annotation { if(([annotation isKindOfClass:[Test_flag class]])) { MKAnnotationView…
Madhumitha
  • 3,664
  • 8
  • 27
  • 41