{"id":3933,"date":"2023-11-05T08:54:10","date_gmt":"2023-11-05T03:24:10","guid":{"rendered":"https:\/\/www.itsupportwale.com\/blog\/?p=3933"},"modified":"2026-02-17T15:54:15","modified_gmt":"2026-02-17T10:24:15","slug":"adding-custom-pins-and-thumbs-to-openstreetmap-in-android","status":"publish","type":"post","link":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/","title":{"rendered":"Adding Custom Pins And Thumbs To OpenStreetMap In Android"},"content":{"rendered":"\n<p>In the world of mobile app development, creating interactive and user-friendly maps is a common requirement. If you&#8217;re looking to add custom pins to OpenStreetMap in your Android application, you&#8217;re in the right place. In this blog, we&#8217;ll delve into the process of enhancing your Android app with custom pins on an OpenStreetMap and provide code examples to get you started.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_80 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-69d7fbc65d2df\" class=\"ez-toc-cssicon-toggle-label\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69d7fbc65d2df\"  aria-label=\"Toggle\" \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#Getting_Started_with_OpenStreetMap_in_Android\" >Getting Started with OpenStreetMap in Android<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#Displaying_a_Map\" >Displaying a Map<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#Adding_Custom_Pins_to_Your_Map\" >Adding Custom Pins to Your Map<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#Conclusion\" >Conclusion<\/a><\/li><\/ul><\/nav><\/div>\n<h4 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Getting_Started_with_OpenStreetMap_in_Android\"><\/span>Getting Started with OpenStreetMap in Android<span class=\"ez-toc-section-end\"><\/span><\/h4>\n\n\n\n<p>To begin, you&#8217;ll need to have a basic understanding of Android app development using Java or Kotlin. First, you&#8217;ll need to include the OpenStreetMap library in your project. You can do this by adding the following dependencies in your app-level build.gradle file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>implementation 'org.osmdroid:osmdroid-android:6.1.10'\nimplementation 'org.osmdroid:osmdroid-mapsforge:6.1.10'\n<\/code><\/pre>\n\n\n\n<p>These dependencies provide the necessary tools for integrating OpenStreetMap in your Android app.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Displaying_a_Map\"><\/span>Displaying a Map<span class=\"ez-toc-section-end\"><\/span><\/h4>\n\n\n\n<p>Now, let&#8217;s display a map in your Android app. In your activity layout XML file, add the <code><strong>org.osmdroid.views.MapView<\/strong><\/code> widget where you want the map to appear:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;org.osmdroid.views.MapView\n    android:id=\"@+id\/mapview\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n\/&gt;\n<\/code><\/pre>\n\n\n\n<p>Next, in your Java or Kotlin code, initialize the map and set its default location:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MapView map = findViewById(R.id.mapview);\nmap.setTileSource(TileSourceFactory.MAPNIK);\nmap.getController().setCenter(new GeoPoint(0, 0));\nmap.getController().setZoom(5);<\/code><\/pre>\n\n\n\n<p>This code sets up a basic map using the MAPNIK tile source and centers it on coordinates (0, 0) with a zoom level of 5.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Adding_Custom_Pins_to_Your_Map\"><\/span>Adding Custom Pins to Your Map<span class=\"ez-toc-section-end\"><\/span><\/h4>\n\n\n\n<p>Now, let&#8217;s add custom pins to your OpenStreetMap. First, prepare your custom pin icon by placing it in your app&#8217;s resources directory. Then, create and add overlays to display the pins on the map:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Drawable customPin = getResources().getDrawable(R.drawable.custom_pin);\nItemizedOverlayWithFocus&lt;OverlayItem&gt; customPins = new ItemizedOverlayWithFocus&lt;&gt;(this, new ArrayList&lt;&gt;(), customPin);\nmap.getOverlays().add(customPins);\n\nGeoPoint pinLocation = new GeoPoint(10, 10);\nOverlayItem overlayItem = new OverlayItem(\"Custom Pin\", \"Description\", pinLocation);\ncustomPins.addItem(overlayItem);\n<\/code><\/pre>\n\n\n\n<p>This code creates a custom pin overlay, specifies its icon, and adds it to the map. You can add multiple custom pins by creating additional <strong><code>OverlayItem<\/code> <\/strong>instances and adding them to the <code><strong>ItemizedOverlayWithFocus<\/strong><\/code>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h4>\n\n\n\n<p>With the code examples and steps provided in this blog, you can enhance your Android app by adding custom pins the map. This feature is invaluable for apps that require location-based services, travel guides, or geolocation-based games. OpenStreetMap is a powerful tool for creating interactive maps in Android apps, and with custom pins, you can make your app even more engaging and informative.<\/p>\n\n\n\n<p>To know about OpenStreetMap distance calculation api <a href=\"https:\/\/oracle.itsupportwale.com\/blog\/openstreetmap-api-in-android-open-source-approach-for-free-mapping\" target=\"_blank\" rel=\"noopener\" title=\"read here\">read here<\/a><\/p>\n\n\n\n<p>To recap, we&#8217;ve covered the process of adding custom pins to OpenStreetMap in Android. By following these steps, you can create an interactive and user-friendly map experience in your Android app. Start integrating OpenStreetMap and enhancing your app&#8217;s mapping capabilities today!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the world of mobile app development, creating interactive and user-friendly maps is a common requirement. If you&#8217;re looking to add custom pins to OpenStreetMap in your Android application, you&#8217;re in the right place. In this blog, we&#8217;ll delve into the process of enhancing your Android app with custom pins on an OpenStreetMap and provide &#8230; <a title=\"Adding Custom Pins And Thumbs To OpenStreetMap In Android\" class=\"read-more\" href=\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\" aria-label=\"Read more  on Adding Custom Pins And Thumbs To OpenStreetMap In Android\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":3938,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[365,2],"tags":[671,670,669,668,672],"class_list":["post-3933","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-android-tutorials","category-tutorials","tag-android-map-development","tag-custom-pins-on-map","tag-openstreetmap","tag-openstreetmap-android","tag-osm-pins-in-android"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding Custom Pins And Thumbs To OpenStreetMap In Android - ITSupportWale<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding Custom Pins And Thumbs To OpenStreetMap In Android - ITSupportWale\" \/>\n<meta property=\"og:description\" content=\"In the world of mobile app development, creating interactive and user-friendly maps is a common requirement. If you&#8217;re looking to add custom pins to OpenStreetMap in your Android application, you&#8217;re in the right place. In this blog, we&#8217;ll delve into the process of enhancing your Android app with custom pins on an OpenStreetMap and provide ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\" \/>\n<meta property=\"og:site_name\" content=\"ITSupportWale\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Itsupportwale-298547177495978\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-05T03:24:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-17T10:24:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1709\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Amit Kumar Pawar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amit Kumar Pawar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\"},\"author\":{\"name\":\"Amit Kumar Pawar\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/f1b08ed0b7b7c92bcde74b981ab6f8a1\"},\"headline\":\"Adding Custom Pins And Thumbs To OpenStreetMap In Android\",\"datePublished\":\"2023-11-05T03:24:10+00:00\",\"dateModified\":\"2026-02-17T10:24:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\"},\"wordCount\":392,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg\",\"keywords\":[\"Android map development\",\"Custom pins on map\",\"OpenStreetMap\",\"OpenStreetMap Android\",\"OSM pins in Android\"],\"articleSection\":[\"Android\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\",\"url\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\",\"name\":\"Adding Custom Pins And Thumbs To OpenStreetMap In Android - ITSupportWale\",\"isPartOf\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg\",\"datePublished\":\"2023-11-05T03:24:10+00:00\",\"dateModified\":\"2026-02-17T10:24:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage\",\"url\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg\",\"contentUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg\",\"width\":2560,\"height\":1709},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/itsupportwale.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding Custom Pins And Thumbs To OpenStreetMap In Android\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#website\",\"url\":\"https:\/\/itsupportwale.com\/blog\/\",\"name\":\"ITSupportWale\",\"description\":\"Tips, Tricks, Fixed-Errors, Tutorials &amp; Guides\",\"publisher\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/itsupportwale.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\",\"name\":\"itsupportwale\",\"url\":\"https:\/\/itsupportwale.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png\",\"contentUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png\",\"width\":1119,\"height\":144,\"caption\":\"itsupportwale\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Itsupportwale-298547177495978\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/f1b08ed0b7b7c92bcde74b981ab6f8a1\",\"name\":\"Amit Kumar Pawar\",\"sameAs\":[\"http:\/\/www.itsupportwale.com\"],\"url\":\"https:\/\/itsupportwale.com\/blog\/author\/ameetpawar00\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Adding Custom Pins And Thumbs To OpenStreetMap In Android - ITSupportWale","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/","og_locale":"en_US","og_type":"article","og_title":"Adding Custom Pins And Thumbs To OpenStreetMap In Android - ITSupportWale","og_description":"In the world of mobile app development, creating interactive and user-friendly maps is a common requirement. If you&#8217;re looking to add custom pins to OpenStreetMap in your Android application, you&#8217;re in the right place. In this blog, we&#8217;ll delve into the process of enhancing your Android app with custom pins on an OpenStreetMap and provide ... Read more","og_url":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/","og_site_name":"ITSupportWale","article_publisher":"https:\/\/www.facebook.com\/Itsupportwale-298547177495978","article_published_time":"2023-11-05T03:24:10+00:00","article_modified_time":"2026-02-17T10:24:15+00:00","og_image":[{"width":2560,"height":1709,"url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg","type":"image\/jpeg"}],"author":"Amit Kumar Pawar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Amit Kumar Pawar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#article","isPartOf":{"@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/"},"author":{"name":"Amit Kumar Pawar","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/f1b08ed0b7b7c92bcde74b981ab6f8a1"},"headline":"Adding Custom Pins And Thumbs To OpenStreetMap In Android","datePublished":"2023-11-05T03:24:10+00:00","dateModified":"2026-02-17T10:24:15+00:00","mainEntityOfPage":{"@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/"},"wordCount":392,"commentCount":0,"publisher":{"@id":"https:\/\/itsupportwale.com\/blog\/#organization"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage"},"thumbnailUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg","keywords":["Android map development","Custom pins on map","OpenStreetMap","OpenStreetMap Android","OSM pins in Android"],"articleSection":["Android","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/","url":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/","name":"Adding Custom Pins And Thumbs To OpenStreetMap In Android - ITSupportWale","isPartOf":{"@id":"https:\/\/itsupportwale.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage"},"thumbnailUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg","datePublished":"2023-11-05T03:24:10+00:00","dateModified":"2026-02-17T10:24:15+00:00","breadcrumb":{"@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#primaryimage","url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg","contentUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/11\/map-marked-with-pins-by-tourist-scaled.jpg","width":2560,"height":1709},{"@type":"BreadcrumbList","@id":"https:\/\/itsupportwale.com\/blog\/adding-custom-pins-and-thumbs-to-openstreetmap-in-android\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itsupportwale.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Adding Custom Pins And Thumbs To OpenStreetMap In Android"}]},{"@type":"WebSite","@id":"https:\/\/itsupportwale.com\/blog\/#website","url":"https:\/\/itsupportwale.com\/blog\/","name":"ITSupportWale","description":"Tips, Tricks, Fixed-Errors, Tutorials &amp; Guides","publisher":{"@id":"https:\/\/itsupportwale.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itsupportwale.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/itsupportwale.com\/blog\/#organization","name":"itsupportwale","url":"https:\/\/itsupportwale.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png","contentUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png","width":1119,"height":144,"caption":"itsupportwale"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Itsupportwale-298547177495978"]},{"@type":"Person","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/f1b08ed0b7b7c92bcde74b981ab6f8a1","name":"Amit Kumar Pawar","sameAs":["http:\/\/www.itsupportwale.com"],"url":"https:\/\/itsupportwale.com\/blog\/author\/ameetpawar00\/"}]}},"_links":{"self":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/3933","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/comments?post=3933"}],"version-history":[{"count":1,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/3933\/revisions"}],"predecessor-version":[{"id":4594,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/3933\/revisions\/4594"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/media\/3938"}],"wp:attachment":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/media?parent=3933"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/categories?post=3933"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/tags?post=3933"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}