{"id":203,"date":"2018-11-30T01:50:56","date_gmt":"2018-11-29T16:50:56","guid":{"rendered":"https:\/\/dalomo.net\/blog\/?p=203"},"modified":"2018-12-08T21:51:53","modified_gmt":"2018-12-08T12:51:53","slug":"googlemap_androidstudio%e3%81%a7%e3%83%9e%e3%83%bc%e3%82%ab%e3%83%bc%e3%82%92gif%e3%82%a2%e3%83%8b%e3%83%a1%e3%81%a3%e3%81%bd%e3%81%8f%e3%81%99%e3%82%8b","status":"publish","type":"post","link":"https:\/\/dalomo.net\/blog\/2018\/11\/30\/203\/","title":{"rendered":"GoogleMap+AndroidStudio\u3067\u30de\u30fc\u30ab\u30fc\u3092gif\u30a2\u30cb\u30e1\u3063\u307d\u304f\u3059\u308b"},"content":{"rendered":"<p><iframe loading=\"lazy\" src=\"https:\/\/www.youtube.com\/embed\/4U61F7pwugo\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n<p>\u3059\u3054\u3044\u305e\u3001\u3067\u304d\u305f\u305e\u3002\u82e5\u5e72\u8208\u596e\u3057\u3066\u76ee\u304c\u51b4\u3048\u3066\u3044\u308b\u3002<\/p>\n<h2>\u30de\u30fc\u30ab\u30fc\u3092\u30a2\u30cb\u30e1\u306b\u3057\u305f\u3044<\/h2>\n<p><a href=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/Screenshot_20181130-004434.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-204\" src=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/Screenshot_20181130-004434-145x300.jpg\" alt=\"\" width=\"145\" height=\"300\" srcset=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/Screenshot_20181130-004434-145x300.jpg 145w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/Screenshot_20181130-004434-768x1593.jpg 768w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/Screenshot_20181130-004434-494x1024.jpg 494w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/Screenshot_20181130-004434.jpg 1080w\" sizes=\"auto, (max-width: 145px) 100vw, 145px\" \/><\/a><\/p>\n<pre>public class MapsActivity extends FragmentActivity implements\r\n        OnMapReadyCallback, GoogleMap.OnMapLoadedCallback {\r\n\r\n    Marker marker;\r\n    Handler handler = new Handler();\r\n    BitmapDescriptor iconSanta;\r\n    BitmapDescriptor iconSanta01;\r\n    BitmapDescriptor iconSanta02;\r\n    BitmapDescriptor iconSanta03;\r\n    BitmapDescriptor iconSanta04;\r\n    BitmapDescriptor iconSanta05;\r\n    BitmapDescriptor iconSanta06;\r\n    BitmapDescriptor iconSanta07;\r\n    BitmapDescriptor iconSanta08;\r\n    BitmapDescriptor iconSanta09;\r\n    BitmapDescriptor iconSanta10;\r\n    Runnable runnable = new Runnable() {\r\n        @Override\r\n        public void run() {\r\n\r\n            switch (marker.getTag().toString()) {\r\n                case (\"i\"):\r\n                    marker.setIcon(iconSanta01);\r\n                    marker.setTag(\"1\");\r\n                    break;\r\n\r\n                case (\"1\"):\r\n                    marker.setIcon(iconSanta02);\r\n                    marker.setTag(\"2\");\r\n                    break;\r\n\r\n                case (\"2\"):\r\n                    marker.setIcon(iconSanta03);\r\n                    marker.setTag(\"3\");\r\n                    break;\r\n\r\n                case (\"3\"):\r\n                    marker.setIcon(iconSanta04);\r\n                    marker.setTag(\"4\");\r\n                    break;\r\n\r\n                case (\"4\"):\r\n                    marker.setIcon(iconSanta05);\r\n                    marker.setTag(\"5\");\r\n                    break;\r\n\r\n                case (\"5\"):\r\n                    marker.setIcon(iconSanta06);\r\n                    marker.setTag(\"6\");\r\n                    break;\r\n\r\n                case (\"6\"):\r\n                    marker.setIcon(iconSanta07);\r\n                    marker.setTag(\"7\");\r\n                    break;\r\n\r\n                case (\"7\"):\r\n                    marker.setIcon(iconSanta08);\r\n                    marker.setTag(\"8\");\r\n                    break;\r\n\r\n                case (\"8\"):\r\n                    marker.setIcon(iconSanta09);\r\n                    marker.setTag(\"9\");\r\n                    break;\r\n\r\n                case (\"9\"):\r\n                    marker.setIcon(iconSanta10);\r\n                    marker.setTag(\"10\");\r\n                    break;\r\n\r\n                case (\"10\"):\r\n                    marker.setIcon(iconSanta01);\r\n                    marker.setTag(\"1\");\r\n                    break;\r\n            }\r\n            handler.postDelayed(runnable, 200);\r\n\r\n        }\r\n    };\r\n    private GoogleMap mMap;\r\n\r\n    @Override\r\n    protected void onCreate(Bundle savedInstanceState) {\r\n        super.onCreate(savedInstanceState);\r\n        setContentView(R.layout.activity_maps);\r\n        \/\/ Obtain the SupportMapFragment and get notified when the map is ready to be used.\r\n        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()\r\n                .findFragmentById(R.id.map);\r\n        mapFragment.getMapAsync(this);\r\n\r\n        iconSanta = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_i);\r\n        iconSanta01 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_01);\r\n        iconSanta02 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_02);\r\n        iconSanta03 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_03);\r\n        iconSanta04 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_04);\r\n        iconSanta05 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_05);\r\n        iconSanta06 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_06);\r\n        iconSanta07 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_07);\r\n        iconSanta08 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_08);\r\n        iconSanta09 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_09);\r\n        iconSanta10 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_10);\r\n\r\n    }\r\n\r\n\r\n    \/**\r\n     * Manipulates the map once available.\r\n     * This callback is triggered when the map is ready to be used.\r\n     * This is where we can add markers or lines, add listeners or move the camera. In this case,\r\n     * we just add a marker near Sydney, Australia.\r\n     * If Google Play services is not installed on the device, the user will be prompted to install\r\n     * it inside the SupportMapFragment. This method will only be triggered once the user has\r\n     * installed Google Play services and returned to the app.\r\n     *\/\r\n    @Override\r\n    public void onMapReady(GoogleMap googleMap) {\r\n        mMap = googleMap;\r\n\r\n        LatLng fuji = new LatLng(35.362859, 138.730883);\r\n\r\n        BitmapDescriptor iconSanta = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_i);\r\n        MarkerOptions option = new MarkerOptions();\r\n\r\n        option.icon(iconSanta).position(fuji);\r\n        marker = mMap.addMarker(option);\r\n        mMap.moveCamera(CameraUpdateFactory.newLatLng(fuji));\r\n\r\n        mMap.setOnMapLoadedCallback(this);\r\n\r\n    }\r\n\r\n    @Override\r\n    public void onMapLoaded() {\r\n\r\n        marker.setIcon(iconSanta);\r\n        marker.setTag(\"i\");\r\n        handler.post(runnable);\r\n    }\r\n\r\n    protected void onDestroy() {\r\n        super.onDestroy();\r\n\r\n        handler.removeCallbacks(runnable);\r\n    }\r\n\r\n}<\/pre>\n<p>\u30de\u30fc\u30ab\u30fc\u3092\u753b\u50cf\u306b\u3057\u305f\u306e\u306f\u3044\u3044\u3051\u3069\u3001\u52d5\u304d\u304c\u7121\u3044\u306e\u3067\u306a\u3093\u304b\u5473\u6c17\u306a\u304b\u3063\u305f\u3002\u52d5\u304b\u3057\u65b9\u3092\u8abf\u3079\u3066\u3044\u305f\u3093\u3060\u3051\u3069\u3001\u5168\u7136\u898b\u3064\u304b\u3089\u306a\u304b\u3063\u305f\u3002\u305d\u3093\u306a\u6298\u3001StackOverflow\u306b\u540c\u3058\u3088\u3046\u306b\u60a9\u3093\u3067\u308b\u4eba\u3092\u898b\u3064\u3051\u3001\u305d\u306e\u30dd\u30b9\u30c8\u306e\u5185\u5bb9\u3092\u53c2\u8003\u306b\u3084\u3063\u3066\u307f\u305f\u3002\u30b3\u30fc\u30c9\u306f\u81ea\u5206\u3067\u3082\u6c5a\u306d\u3047\u30b3\u30fc\u30c9\u3060\u306a\u3068\u601d\u3046\u304c\u3001\u3067\u304d\u305f\u559c\u3073\u304c\u3059\u3054\u3044\u3002<\/p>\n<h3>\u753b\u50cf\u3092\u7528\u610f\u3059\u308b<\/h3>\n<h4>\u30b3\u30de\u64ae\u308a\u753b\u50cf\u3092\u4f5c\u6210\u3059\u308b<\/h4>\n<p><a href=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker01.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-206\" src=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker01-300x167.png\" alt=\"\" width=\"300\" height=\"167\" srcset=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker01-300x167.png 300w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker01-120x67.png 120w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker01-160x90.png 160w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker01.png 679w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>\u30b3\u30de\u64ae\u308a\u30a2\u30cb\u30e1\u306e\u8981\u9818\u3067\u3001\u4e00\u679a\u305a\u3064\u753b\u50cf\u3092\u7528\u610f\u3059\u308b\u3002\u5927\u5909\u3081\u3093\u3069\u304f\u3055\u3044\u3002<\/p>\n<h4>\u753b\u50cf\u3092drawable\u306b\u3076\u3063\u3053\u3080<\/h4>\n<p><a href=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker02.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-207\" src=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker02-175x300.png\" alt=\"\" width=\"175\" height=\"300\" srcset=\"https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker02-175x300.png 175w, https:\/\/dalomo.net\/blog\/wp-content\/uploads\/2018\/11\/marker02.png 364w\" sizes=\"auto, (max-width: 175px) 100vw, 175px\" \/><\/a><\/p>\n<p>\u3075\u3064\u30fc\u306b\u30a8\u30af\u30b9\u30d7\u30ed\u30fc\u30e9\u30fc\u3067\u30b3\u30d4\u30fc\u3057\u3066\u30d5\u30a9\u30eb\u30c0\u53f3\u30af\u30ea\u30c3\u30af\u306e\u30da\u30fc\u30b9\u30c8\u3002\u306a\u3093\u304b\u306e\u30c0\u30a4\u30a2\u30ed\u30b0\u304c\u51fa\u308b\u306e\u3067v24\u3063\u3066\u4ed8\u3044\u3066\u308b\u3084\u3064\u3092\u9078\u3093\u3060\u3002<\/p>\n<h4>\u753b\u50cf\u3092\u6271\u3046\u6e96\u5099\u3092\u3059\u308b<\/h4>\n<pre>BitmapDescriptor iconSanta;\r\nBitmapDescriptor iconSanta01;\r\nBitmapDescriptor iconSanta02;\r\nBitmapDescriptor iconSanta03;\r\n\u2026<\/pre>\n<p>\u679a\u6570\u5206BitmapDescriptor\u578b\u306e\u5909\u6570\u3092\u5ba3\u8a00\u3057\u3066onCreate\u5185\u3067<\/p>\n<pre>iconSanta01 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_01);\r\niconSanta02 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_02);\r\niconSanta03 = BitmapDescriptorFactory.fromResource(R.drawable.christmas_santa_sori_03);\r\n\u2026<\/pre>\n<p>\u30ea\u30bd\u30fc\u30b9\u304b\u3089\u8aad\u307f\u8fbc\u3080\u300210\u679a\u5206\u66f8\u3044\u3066\u308b\u3068\u5fc3\u304c\u6298\u308c\u305d\u3046\u306b\u306a\u308b\u3051\u3069\u9811\u5f35\u308b\u3002<\/p>\n<h3>\u30de\u30fc\u30ab\u30fc\u306e\u753b\u50cf\u3092\u5909\u3048\u308b<\/h3>\n<h4>Marker\u578b\u306e\u5909\u6570\u3092\u5ba3\u8a00&amp;\u4ee3\u5165<\/h4>\n<pre>Marker marker;<\/pre>\n<pre>marker = mMap.addMarker(option);<\/pre>\n<p>GoogleMap.addMarker\u306e\u623b\u308a\u5024\u304cMarker\u3068\u3044\u3046\u3053\u3068\u3067\u3001add\u3057\u305f\u30de\u30fc\u30ab\u30fc\u3092\u6271\u3048\u308b\u3088\u3046\u306b\u5909\u6570\u306b\u4ee3\u5165\u3057\u3068\u304f\u3002StackOverflow\u306e\u4eba\u306f\u3001MarkerOptions\u3068addMarker\u3092\u5229\u7528\u3057\u3088\u3046\u3068\u3057\u3066\u3001\u3067\u304d\u306a\u304b\u3063\u305f\u304b\u3089\u8cea\u554f\u3057\u305f\u307f\u305f\u3044\u3002\u3042\u306a\u305f\u306e\u304a\u304b\u3052\u3067\u3059\u3001\u3042\u308a\u304c\u3068\u3046!<\/p>\n<h4>OnMapLoadedCallback\u3092\u4f7f\u3046<\/h4>\n<pre>public class MapsActivity extends FragmentActivity implements\r\n        OnMapReadyCallback, GoogleMap.OnMapLoadedCallback {<\/pre>\n<pre>mMap.setOnMapLoadedCallback(this);<\/pre>\n<pre>@Override\r\npublic void onMapLoaded() {\r\n\r\n    marker.setIcon(iconSanta);\r\n    marker.setTag(\"i\");\r\n    handler.post(runnable);\r\n}<\/pre>\n<p>onMapReady\u5185\u3067handler\u4f7f\u3046\u3068\u3001\u3044\u3064\u307e\u3067\u7d4c\u3063\u3066\u3082\u6e96\u5099\u304c\u7d42\u308f\u3089\u306a\u3044\u3068\u304b\u306b\u306a\u3063\u305f\u308a\u3059\u308b\u304b\u306a(\u203b\u8a66\u3057\u3066\u306a\u3044)\u3068\u601d\u3063\u305f\u306e\u3067\u3001onStart()\u7684\u306a\u3082\u306e\u304c\u306a\u3044\u304b\u3068\u63a2\u3057\u305f\u3089\u3001OnMapLoadedCallback\u306a\u308b\u3082\u306e\u3092\u898b\u3064\u3051\u305f\u3002Map\u306e\u6e96\u5099\u304c\u7d42\u308f\u308b\u3068\u3053\u306e\u4e2d\u306e\u51e6\u7406\u304c\u547c\u3070\u308c\u308b\u307f\u305f\u3044\u3002\u3053\u3053\u3089\u8fba\u3088\u304f\u308f\u304b\u3063\u3066\u306a\u3044\u3002<\/p>\n<p>\u3067\u3001\u305d\u3053\u3067setTag()\u3067\u30de\u30fc\u30ab\u30fc\u306b\u521d\u671f\u5024\u3092\u4ed8\u3051\u3068\u3044\u3066\u3042\u3052\u308b\u3002\u305d\u3057\u3066\u307e\u305f\u3042\u306eHandler\u3055\u3093\u306e\u51fa\u756a\u3084!<\/p>\n<h4>Handler.postDelayed\u4f7f\u3046<\/h4>\n<pre>Runnable runnable = new Runnable() {\r\n    @Override\r\n    public void run() {\r\n\r\n        switch (marker.getTag().toString()) {\r\n            case (\"i\"):\r\n                marker.setIcon(iconSanta01);\r\n                marker.setTag(\"1\");\r\n                break;\r\n\r\n            case (\"1\"):\r\n                marker.setIcon(iconSanta02);\r\n                marker.setTag(\"2\");\r\n                break;\r\n\r\n\u2026\r\n\r\n            case (\"10\"):\r\n                marker.setIcon(iconSanta01);\r\n                marker.setTag(\"1\");\r\n                break;\r\n        }\r\n        handler.postDelayed(runnable, 200);\r\n    }\r\n};<\/pre>\n<p>StopWatch\u4f5c\u3063\u3066\u3066\u3088\u304b\u3063\u305f\u3001\u4f55\u3068\u306a\u304f\u5206\u304b\u308b\u306e\u3067\u81c6\u3055\u306a\u304b\u3063\u305f\u305e\u3002Marker\u306b\u4ed8\u3051\u305fTag\u3092\u8abf\u3079\u3066\u3001\u30b3\u30de\u9001\u308a\u306e\u9806\u7e70\u308a\u306bswitch\u6587\u3067\u51e6\u7406\u3092\u56de\u3057\u3066\u3042\u3052\u308b\u3002Marker\u306esetIcon\u3067\u753b\u50cf\u3092\u5909\u3048\u3089\u308c\u308b\u306e\u306710\u679a\u5206\u66f8\u3044\u305f\u3001\u6c17\u304c\u72c2\u3044\u305d\u3046\u306b\u306a\u308b\u3051\u3069\u9811\u5f35\u3063\u305f\u3002\u305d\u3093\u3067\u6700\u5f8c\u306epostDelayed\u3067\u30b3\u30de\u9001\u308a\u306e\u9593\u9694\u3092\u8a2d\u5b9a\u3057\u305f\u3002\u5c0f\u3055\u304f\u3059\u308c\u3070\u65e9\u304f\u52d5\u304f\u3057\u3001\u5927\u304d\u304f\u3059\u308c\u3070\u3086\u3063\u304f\u308a\u306b\u306a\u308b\u3002<\/p>\n<h3>\u6240\u898b<\/h3>\n<p>\u3068\u306b\u304b\u304f\u3067\u304d\u3066\u5b09\u3057\u3044!\u52d5\u3044\u3066\u308b\u3068\u3084\u3063\u3071\u304b\u308f\u3044\u3044\u306d\u3002\u305f\u3060\u3001\u3053\u306e\u3084\u308a\u65b9\u306f\u3042\u3093\u307e\u308a\u826f\u3044\u3084\u308a\u65b9\u3058\u3083\u306a\u3044\u307f\u305f\u3044\u3002\u3053\u3046\u3001\u7aef\u672b\u306e\u8a08\u7b97\u8cc7\u6e90\u3092\u5927\u304d\u304f\u4f7f\u3046\u611f\u3058\u306b\u306a\u308b\u3089\u3057\u3044\u3002Google\u304cgif\u30a2\u30cb\u30e1\u306b\u5bfe\u5fdc\u3057\u3066\u304f\u308c\u308c\u3070\u3044\u3044\u306e\u306b\u306a\u3002\u3044\u3084\u30fc\u6e80\u8db3\u6e80\u8db3\u3002\u5f15\u304d\u7d9a\u304d\u5730\u56f3\u3092\u30b0\u30ea\u30b0\u30ea\u3057\u3066\u3053\u3063\u3068\u3002<\/p>\n<h3>\u53c2\u8003<\/h3>\n<p><a href=\"https:\/\/stackoverflow.com\/questions\/32715920\/gif-type-animation-for-marker-in-google-map-api-android\">https:\/\/stackoverflow.com\/questions\/32715920\/gif-type-animation-for-marker-in-google-map-api-android<\/a><\/p>\n<p><a href=\"https:\/\/developers.google.com\/maps\/documentation\/android-sdk\/marker\">https:\/\/developers.google.com\/maps\/documentation\/android-sdk\/marker<\/a><\/p>\n<p><a href=\"https:\/\/seesaawiki.jp\/w\/moonlight_aska\/d\/%C3%CF%BF%DE%A4%CE%C9%C1%B2%E8%A4%AC%B4%B0%CE%BB%A4%B9%A4%EB%A4%C8....\">https:\/\/seesaawiki.jp\/w\/moonlight_aska\/d\/%C3%CF%BF%DE%A4%CE%C9%C1%B2%E8%A4%AC%B4%B0%CE%BB%A4%B9%A4%EB%A4%C8&#8230;.<\/a><\/p>\n<p><a href=\"https:\/\/dalomo.net\/blog\/2018\/11\/25\/183\/\">https:\/\/dalomo.net\/blog\/2018\/11\/25\/183\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u3059\u3054\u3044\u305e\u3001\u3067\u304d\u305f\u305e\u3002\u82e5\u5e72\u8208\u596e\u3057\u3066\u76ee\u304c\u51b4\u3048\u3066\u3044\u308b\u3002 \u30de\u30fc\u30ab\u30fc\u3092\u30a2\u30cb\u30e1\u306b\u3057\u305f\u3044 public class MapsActivity extends FragmentActivity implements OnMapReady &hellip; <a href=\"https:\/\/dalomo.net\/blog\/2018\/11\/30\/203\/\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":204,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[9],"tags":[3,6,17,4,24,16],"class_list":["post-203","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-9","tag-android","tag-androidstudio","tag-googlemap","tag-4","tag-24","tag-16"],"_links":{"self":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts\/203","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/comments?post=203"}],"version-history":[{"count":4,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts\/203\/revisions"}],"predecessor-version":[{"id":210,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/posts\/203\/revisions\/210"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/media\/204"}],"wp:attachment":[{"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/media?parent=203"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/categories?post=203"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dalomo.net\/blog\/wp-json\/wp\/v2\/tags?post=203"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}