Questions tagged [callouts]

107 questions
0
votes
1 answer

Custom callout View with xip

I'm trying to set a custom callout view with a xib I created however it doesn't show up. When I tap in a pin the app is crashing and show the follow error It's anyone that can help me? You can find the code here. https://github.com/andreasvas/xcode
0
votes
1 answer

Image does not show in my react-native-maps call out component. It only shows an empty rectangle?

I want to add Images to my call out component in react-native-maps-markers. But it only shows empty rectangles. How can I fix this? Without putting image component inside a Text component. Because then its harder to align images. return ( …
0
votes
2 answers

Open a view when calloutAccessoryControlTapped triggered

How can I open a view when I clicked on annotation's button with a navigation button to go back to my mapkit and pass some parameters to the view? Regards
DeZigny
  • 1,953
  • 4
  • 19
  • 29
0
votes
1 answer

callouts above the pins

I'm making an app, using mapkit & making the callout's on my own, but I have a problem there. I put a custom pin's image too, & the callout's bubble, appears behind the pins, & want to show them above them. I tried…
Oscar
  • 1,899
  • 1
  • 22
  • 32
0
votes
1 answer

Adempiere column callout for fields not working on import and create lines from (from code) options

Adempiere callout for fields doesn't working on import options or create lines from option. It ignores field callout if i do things through code rather then manual selection. I thought for one solution which is, Shifting callout code to model…
user9626527
  • 106
  • 9
0
votes
2 answers

How to access callout view on clicking on map annotation using swift in xctest

I want to access callout views and do some UIAutomation on those views. I'm able to click on map markers/annotations but not able to access the callout view. The following code used to tap on the marker: let marker =…
0
votes
1 answer

Batch Apex callout limits

does callout limitation depends on the number of times the execute method is invoked in a batch class? I have read that it depends on the number of callouts per execute method, so we should use batch size of 1 if have to utilize the maximum of 100…
0
votes
0 answers

Datagrid inside tooltip using VB.NET

What will be the best approach to embed a datagridview like thing inside tooltip. I would like to display useful information in an organized way inside tooltip control on MsChart rather than just displaying simple text info using callout or standard…
user3051677
  • 147
  • 14
0
votes
1 answer

Custom Map Annotation Callout image

I'm able to set the MKPinAnnotationView with title, subtitle, an image on the left (leftCalloutAccessoryView) and a button on the right (rightCalloutAccessoryView). With this code i set the image on the left: UIImageView *myImageView =…
Daniele
  • 122
  • 1
  • 1
  • 10
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
0 answers

Callout component get wrong position inside bottom placeholder

I am trying to show the react callout component inside the bottom placeholder in a modern SharePoint page but when I click the button to open the callout this shows in the top left of the screen and not right under the button. Is there some css…
Americo Perez
  • 95
  • 1
  • 4
  • 17
0
votes
1 answer

How to delay callout from showing when annotation selected in MKMapView? Swift 4

(This is my first stack overflow question haha) UPDATE: From this link - Center MKMapView BEFORE displaying callout I implemented the solution from Thermometer, however selecting and deselecting the annotation makes it look like my application is…
Hunter
  • 51
  • 1
  • 7
0
votes
1 answer

How to make use of Markups Core 'Callout' EditMode

I am attempting to replicate the BIM 360's Design Review Editor's callout tool (the most useful tool of them all) within my Forge app, but I can't seem to get the callouts edit mode from the Markups Core extension to work properly. When I change the…
0
votes
3 answers

- (MKAnnotationView *)mapView not getting called

In my code, the - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id )annotation method is not getting called. I don know why. Can anyone please help me? Below is my code: - (MKAnnotationView *)mapView:(MKMapView…
Droidme
  • 1,223
  • 6
  • 25
  • 45
0
votes
2 answers

Updating an AnnotationView Callout after details entered in View Controller that was pushed form the map view

I have a simple maps app with multiple pins on a map view. My intention is to tap a pin, show a callout with an accessory view, push to a Detail View Controller where you can edit that pin/locations details. This all works fine, but once i pop the…