Questions tagged [calloutview]

20 questions
13
votes
1 answer

Customise iOS8 Callout bubble (Swift)

I want to customise the iOS8 MapView Callout bubble which get visualised when clicking on a MKAnnotationView. The Default bubble is a bit limiting (having only Title,Subtitle and 2 accessory view) so I'm struggling to find an alternative solution.…
Claus
  • 5,662
  • 10
  • 77
  • 118
3
votes
1 answer

Swift -How to Update Data in Custom MKAnnotation Callout?

I have a custom annotation for my mapView. I initially set the coordinate, title (eg. "first title"), subTitle (eg. "first address"), userId, and a distance (eg. 0 meters) property on it with some data. I add it to the mapView and to an array for…
Lance Samaria
  • 17,576
  • 18
  • 108
  • 256
3
votes
1 answer

Is it possible to use custom view for SKCalloutView?

Is it possible to make a custom UIView, with elements such as Label and Button, and use it as a CalloutView? What I read through the documentation so far doesn't implicates that it is possible. Changing left and right button is possible, together…
SteBra
  • 4,188
  • 6
  • 37
  • 68
3
votes
0 answers

Custom callout catch touch event

I am using SMCalloutView To create a custom callout for my mapView. The problem I am running into is when the callout view is visible and the user presses on the callout, if another annotation is under the callout view it will dismiss the current…
RandomBytes
  • 1,781
  • 1
  • 13
  • 14
2
votes
1 answer

Integrating UITableView inside iOS callout annotation

My app shows a map with some pin points. I would like to visualise a tableview inside a callout bubble when one of the pin is touched. I have found something similar here but it's in Objective-C (I would like a pure Swift approach) and it requires…
Claus
  • 5,662
  • 10
  • 77
  • 118
1
vote
0 answers

How to add colored border bubble callout in swift?

I added a right button to callout, but now I'd like add a colored border to the whole bubble/callout. let's say I want the whole bubble with a colored border. I thought to implement something as view?.detailCalloutAccessoryView?.layer.borderWidth =…
biggreentree
  • 1,633
  • 3
  • 20
  • 35
1
vote
0 answers

Custom MapKit Annotation does not work

I am trying to create a custom Callout but for some reason the default point image does not change. I am fetching the data for the points using Parse. I have created a custom class (customAnnotationView) which inherits from MKAnnotationView and I…
nitse
  • 21
  • 7
1
vote
0 answers

Custom callout not receiving touch action

func mapView(mapView: MKMapView!, didSelectAnnotationView view: MKAnnotationView!) { /* * Other stuff .... */ visibleCallOutView = CustomCallOut(frame: aFrame) view.addSubview(visibleCallOutView) } func mapView(mapView:…
Tapas Pal
  • 7,073
  • 8
  • 39
  • 86
1
vote
1 answer

calloutAccessoryControlTapped not being called

I am trying to use the CalloutAccessory feature, but the delegate method never gets called. I have the delegate properly set up as other mapview delegate methods in my code are firing fine, but for some reason for this one, the delegate method…
Speckpgh
  • 3,332
  • 1
  • 28
  • 46
1
vote
1 answer

Is it possible to show callout views for 3 different annotations at once?

I need to show calloutView for all 3 annotations I presently have on the map, and let the user decide which he will interact with based on the info written on those callouts. I tried calling: [[SKRoutingService sharedInstance].mapView…
SteBra
  • 4,188
  • 6
  • 37
  • 68
0
votes
1 answer

How to turn the arrow(image) so that it does not turn CalloutView

I need to turn the arrow on the map (customAnnotationView) so that the calloutView does not rotate (Example 1). When I rotate only the image: The arrows are not set in the center and of different sizes (Example 2). Example 1 Example 2 Example…
0
votes
2 answers

Callout style popup in WPF

In my WPF application, I am trying to implement a Callout style Popup. I got some reference but still could a good solution. Please find the image what I am trying to implement. It should be a popup window. The initial position should be…
0
votes
2 answers

Show callout for disclosureindicator for MKAnnotationView in Swift

I am able to show a disclosure icon in on my map annotation using the following code. annotationView = MKAnnotationView(annotation: annotation, reuseIdentifier: annotationIdentifier) annotationView?.rightCalloutAccessoryView =…
user1904273
  • 4,562
  • 11
  • 45
  • 96
0
votes
1 answer

Custom callout getting dismissed in MKMapView when tapped

I have a map view and a custom callout built from scratch. Everything works fine except that the callout disappears whenever user taps on it.
Khanh Nguyen
  • 11,112
  • 10
  • 52
  • 65
0
votes
0 answers

Implementing custom callout button for "About"/ "Info"

Im extremely new to iOS and i have a requirement where in table view, each cell displays list of stores near by and also an info button at the end which shows the timings of the stores. Info accessory button like this and my requirement is to…
Ashh
  • 569
  • 1
  • 6
  • 28
1
2