so, I have an app which allows users to add recommendations for restaurants and places in a certain area, when added a MapIcon is added to map and data pulled from parse, what i need is a way that when the MapIcon is clicked that is displays the information for that recommendation, another option is adding a custom user control to the map. put I would prefer the first way. Any Help would be appreciated :)
Interactive MapIcon, Windows Phone 8.1 Universal App
917 Views Asked by Sam Beadle At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in XAML
- WPF multiple control property simultaneous changes
- Telerik's WPF RadColorPicker NoColorText property not working
- Ellipsis inside button content Windows Phone
- Binding to "this.property" object in VisualStateMenager
- Scroll view mistakes
- ContextMenu Closes Immediately
- Update ObservableCollection where the items are received from another List
- Looping "complex" object with ItemsControl
- Animation Trigger (Storyboard + Trigger) in C#
- Exporting Datatable
- xaml c# chart with custom axis label
- Xamarin Forms - Show Cancel button in toolbar items instead of Back (iOS)
- Can custom text be added to a listview cell?
- Bind control property from the inner control
- WPF Interactions CallMethodAction for DataTemplate in ListCheckBox thrown a exception "Could not find method on object of type"
Related Questions in MAPS
- Accessing Google Maps Markers in 2D-array from outside
- How to easily create a heatmap layer from a pre-existing vector layer of points in OpenLayers 3?
- Android studio doesn't show google maps
- Google Maps Data URI Scheme Failing in Android's "HTML Viewer"
- Prevent plotting scaled point with zero value, Mapbox, leaflet
- How to embed a kml or kmz file in my webpage
- How can I center the GMSMapMarker view in a coordinate
- How do I use elements of a vector as arguments for another command in R?
- Qt5/QML Displaying a custom route on a map
- Optimize duplicate values in NoSql key-value storage
- Displaying bubbles in Kartograph.js
- android.support.v4.app.Fragment Google Map on API 10
- User selecting item in map
- jQuery/javascript Plugin for maps that will render borders or parks
- Cordova G.maps plugin build failed with not have OS required enviroment
Related Questions in PUSHPIN
- WPF Bing Maps - Unwanted Pushpin in center of map
- Wpf Bing api & Pushpin
- Can I adjust my Bing Map's View/LocationRect/Bounding Box by a small amount?
- How to show map with pushpin for given latitude and longitude in windows phone 8
- Silverlight Bing Maps Pushpin Styling
- How to get all the pushpins on the Map
- Pushpin location binding in windows phone 8 app is not working
- PushPin and error UIElement.Arrange(finalRect) cannot be called with Infinite or NaN values in finalRect
- How to get the model object of a pushpin through a click on the pushpin in bing map?
- Can't set text on pushpins in Bing Maps
- Telling pushpins apart in Bing Maps
- Interactive MapIcon, Windows Phone 8.1 Universal App
- XAML Create ControlTemplate for Map PushPin
- While adding multiple pushpins in Bing Maps the infobox always takes the last element
- How to Get the the Current city name using gps in bing map
Related Questions in WIN-PHONE-SILVERLIGHT-8.1
- Failed to unpack .xap Windows App Certification Kit 3.3
- WP Silverlight 8.1 App - Reminder not launching app when touched
- WinPhone accessing local file
- Interactive MapIcon, Windows Phone 8.1 Universal App
- parse.com Client Push notifications are not received in windows phone when application is offline
- Xamarin Forms: Win Phone 8.1 Silverlight offline mode using Azure
- Xamarin forms win phone silverlight 8.1 Toast notifications not working
- xamarin forms win phone 8.1 background tasks for push notifications not registering
- WinPhone 8.1 register Push Id to Azure notification hub error: The type name 'MobileService' does not exist in the type 'App'
- Xamarin Forms WinPhone 8.1 Silverlight WNS push notifications
- Windows Phone Silverlight 8.1 Background tasks
- How to access App class from any page in Windows phone 8.1 sliverlight application?
- BackgroundDownloader.CreateDownload method not working in windows phone 8.1
- Deployment issues to win phone 8.1 device
- How to do animation for Buttons inside DataTemplate through DataBinding.
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can't make MapIcon (and other children of the MapElements collection) interactive. These are controlled by the native MapControl.
What you can do, is add normal XAML elements to the MapControls Children collection e.g. via a MapItemsControl. There you can use whatever you like. Buttons, Images with tapped handlers and so on. See http://msdn.microsoft.com/en-us/library/jj620947.aspx