इस ट्यूटोरियल में बताया गया है कि Android ऐप्लिकेशन में Google मैप कैसे जोड़ें और मैप पर रास्तों और इलाकों को दिखाने के लिए पॉलीलाइन और पॉलीगॉन.
Android ऐप्लिकेशन बनाने के लिए, Android के लिए Maps SDK टूल. हमारा सुझाव है कि डेवलपमेंट एनवायरमेंट का इस्तेमाल करें Android Studio.
कोड प्राप्त करें
Google Maps Android API v2 सैंपल डेटा स्टोर करने की जगह को क्लोन करें या डाउनलोड करें GitHub से लिया गया है.
गतिविधि का Java वर्शन देखें:
// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.example.polygons; import android.os.Bundle; import android.widget.Toast; import androidx.appcompat.app.AppCompatActivity; import com.google.android.gms.maps.CameraUpdateFactory; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.OnMapReadyCallback; import com.google.android.gms.maps.SupportMapFragment; import com.google.android.gms.maps.model.BitmapDescriptorFactory; import com.google.android.gms.maps.model.CustomCap; import com.google.android.gms.maps.model.Dash; import com.google.android.gms.maps.model.Dot; import com.google.android.gms.maps.model.Gap; import com.google.android.gms.maps.model.JointType; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.PatternItem; import com.google.android.gms.maps.model.Polygon; import com.google.android.gms.maps.model.PolygonOptions; import com.google.android.gms.maps.model.Polyline; import com.google.android.gms.maps.model.PolylineOptions; import com.google.android.gms.maps.model.RoundCap; import java.util.Arrays; import java.util.List; /** * An activity that displays a Google map with polylines to represent paths or routes, * and polygons to represent areas. */ public class PolyActivity extends AppCompatActivity implements OnMapReadyCallback, GoogleMap.OnPolylineClickListener, GoogleMap.OnPolygonClickListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps); // Get the SupportMapFragment and request notification when the map is ready to be used. SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map); mapFragment.getMapAsync(this); } /** * Manipulates the map when it's available. * The API invokes this callback when the map is ready to be used. * This is where we can add markers or lines, add listeners or move the camera. * In this tutorial, we add polylines and polygons to represent routes and areas on the map. */ @Override public void onMapReady(GoogleMap googleMap) { // Add polylines to the map. // Polylines are useful to show a route or some other connection between points. Polyline polyline1 = googleMap.addPolyline(new PolylineOptions() .clickable(true) .add( new LatLng(-35.016, 143.321), new LatLng(-34.747, 145.592), new LatLng(-34.364, 147.891), new LatLng(-33.501, 150.217), new LatLng(-32.306, 149.248), new LatLng(-32.491, 147.309))); // Store a data object with the polyline, used here to indicate an arbitrary type. polyline1.setTag("A"); // Style the polyline. stylePolyline(polyline1); Polyline polyline2 = googleMap.addPolyline(new PolylineOptions() .clickable(true) .add( new LatLng(-29.501, 119.700), new LatLng(-27.456, 119.672), new LatLng(-25.971, 124.187), new LatLng(-28.081, 126.555), new LatLng(-28.848, 124.229), new LatLng(-28.215, 123.938))); polyline2.setTag("B"); stylePolyline(polyline2); // Add polygons to indicate areas on the map. Polygon polygon1 = googleMap.addPolygon(new PolygonOptions() .clickable(true) .add( new LatLng(-27.457, 153.040), new LatLng(-33.852, 151.211), new LatLng(-37.813, 144.962), new LatLng(-34.928, 138.599))); // Store a data object with the polygon, used here to indicate an arbitrary type. polygon1.setTag("alpha"); // Style the polygon. stylePolygon(polygon1); Polygon polygon2 = googleMap.addPolygon(new PolygonOptions() .clickable(true) .add( new LatLng(-31.673, 128.892), new LatLng(-31.952, 115.857), new LatLng(-17.785, 122.258), new LatLng(-12.4258, 130.7932))); polygon2.setTag("beta"); stylePolygon(polygon2); // Position the map's camera near Alice Springs in the center of Australia, // and set the zoom factor so most of Australia shows on the screen. googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-23.684, 133.903), 4)); // Set listeners for click events. googleMap.setOnPolylineClickListener(this); googleMap.setOnPolygonClickListener(this); } private static final int COLOR_BLACK_ARGB = 0xff000000; private static final int POLYLINE_STROKE_WIDTH_PX = 12; /** * Styles the polyline, based on type. * @param polyline The polyline object that needs styling. */ private void stylePolyline(Polyline polyline) { String type = ""; // Get the data object stored with the polyline. if (polyline.getTag() != null) { type = polyline.getTag().toString(); } switch (type) { // If no type is given, allow the API to use the default. case "A": // Use a custom bitmap as the cap at the start of the line. polyline.setStartCap( new CustomCap( BitmapDescriptorFactory.fromResource(R.drawable.ic_arrow), 10)); break; case "B": // Use a round cap at the start of the line. polyline.setStartCap(new RoundCap()); break; } polyline.setEndCap(new RoundCap()); polyline.setWidth(POLYLINE_STROKE_WIDTH_PX); polyline.setColor(COLOR_BLACK_ARGB); polyline.setJointType(JointType.ROUND); } private static final int PATTERN_GAP_LENGTH_PX = 20; private static final PatternItem DOT = new Dot(); private static final PatternItem GAP = new Gap(PATTERN_GAP_LENGTH_PX); // Create a stroke pattern of a gap followed by a dot. private static final List<PatternItem> PATTERN_POLYLINE_DOTTED = Arrays.asList(GAP, DOT); /** * Listens for clicks on a polyline. * @param polyline The polyline object that the user has clicked. */ @Override public void onPolylineClick(Polyline polyline) { // Flip from solid stroke to dotted stroke pattern. if ((polyline.getPattern() == null) || (!polyline.getPattern().contains(DOT))) { polyline.setPattern(PATTERN_POLYLINE_DOTTED); } else { // The default pattern is a solid stroke. polyline.setPattern(null); } Toast.makeText(this, "Route type " + polyline.getTag().toString(), Toast.LENGTH_SHORT).show(); } /** * Listens for clicks on a polygon. * @param polygon The polygon object that the user has clicked. */ @Override public void onPolygonClick(Polygon polygon) { // Flip the values of the red, green, and blue components of the polygon's color. int color = polygon.getStrokeColor() ^ 0x00ffffff; polygon.setStrokeColor(color); color = polygon.getFillColor() ^ 0x00ffffff; polygon.setFillColor(color); Toast.makeText(this, "Area type " + polygon.getTag().toString(), Toast.LENGTH_SHORT).show(); } private static final int COLOR_WHITE_ARGB = 0xffffffff; private static final int COLOR_DARK_GREEN_ARGB = 0xff388E3C; private static final int COLOR_LIGHT_GREEN_ARGB = 0xff81C784; private static final int COLOR_DARK_ORANGE_ARGB = 0xffF57F17; private static final int COLOR_LIGHT_ORANGE_ARGB = 0xffF9A825; private static final int POLYGON_STROKE_WIDTH_PX = 8; private static final int PATTERN_DASH_LENGTH_PX = 20; private static final PatternItem DASH = new Dash(PATTERN_DASH_LENGTH_PX); // Create a stroke pattern of a gap followed by a dash. private static final List<PatternItem> PATTERN_POLYGON_ALPHA = Arrays.asList(GAP, DASH); // Create a stroke pattern of a dot followed by a gap, a dash, and another gap. private static final List<PatternItem> PATTERN_POLYGON_BETA = Arrays.asList(DOT, GAP, DASH, GAP); /** * Styles the polygon, based on type. * @param polygon The polygon object that needs styling. */ private void stylePolygon(Polygon polygon) { String type = ""; // Get the data object stored with the polygon. if (polygon.getTag() != null) { type = polygon.getTag().toString(); } List<PatternItem> pattern = null; int strokeColor = COLOR_BLACK_ARGB; int fillColor = COLOR_WHITE_ARGB; switch (type) { // If no type is given, allow the API to use the default. case "alpha": // Apply a stroke pattern to render a dashed line, and define colors. pattern = PATTERN_POLYGON_ALPHA; strokeColor = COLOR_DARK_GREEN_ARGB; fillColor = COLOR_LIGHT_GREEN_ARGB; break; case "beta": // Apply a stroke pattern to render a line of dots and dashes, and define colors. pattern = PATTERN_POLYGON_BETA; strokeColor = COLOR_DARK_ORANGE_ARGB; fillColor = COLOR_LIGHT_ORANGE_ARGB; break; } polygon.setStrokePattern(pattern); polygon.setStrokeWidth(POLYGON_STROKE_WIDTH_PX); polygon.setStrokeColor(strokeColor); polygon.setFillColor(fillColor); } }
गतिविधि का Kotlin वर्शन देखें:
// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.example.polygons import android.os.Bundle import android.widget.Toast import androidx.appcompat.app.AppCompatActivity import com.google.android.gms.maps.CameraUpdateFactory import com.google.android.gms.maps.GoogleMap import com.google.android.gms.maps.GoogleMap.OnPolygonClickListener import com.google.android.gms.maps.GoogleMap.OnPolylineClickListener import com.google.android.gms.maps.OnMapReadyCallback import com.google.android.gms.maps.SupportMapFragment import com.google.android.gms.maps.model.BitmapDescriptorFactory import com.google.android.gms.maps.model.CustomCap import com.google.android.gms.maps.model.Dash import com.google.android.gms.maps.model.Dot import com.google.android.gms.maps.model.Gap import com.google.android.gms.maps.model.JointType import com.google.android.gms.maps.model.LatLng import com.google.android.gms.maps.model.PatternItem import com.google.android.gms.maps.model.Polygon import com.google.android.gms.maps.model.PolygonOptions import com.google.android.gms.maps.model.Polyline import com.google.android.gms.maps.model.PolylineOptions import com.google.android.gms.maps.model.RoundCap /** * An activity that displays a Google map with polylines to represent paths or routes, * and polygons to represent areas. */ class PolyActivity : AppCompatActivity(), OnMapReadyCallback, OnPolylineClickListener, OnPolygonClickListener { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps) // Get the SupportMapFragment and request notification when the map is ready to be used. val mapFragment = supportFragmentManager .findFragmentById(R.id.map) as SupportMapFragment? mapFragment?.getMapAsync(this) } /** * Manipulates the map when it's available. * The API invokes this callback when the map is ready to be used. * This is where we can add markers or lines, add listeners or move the camera. * In this tutorial, we add polylines and polygons to represent routes and areas on the map. */ override fun onMapReady(googleMap: GoogleMap) { // Add polylines to the map. // Polylines are useful to show a route or some other connection between points. val polyline1 = googleMap.addPolyline(PolylineOptions() .clickable(true) .add( LatLng(-35.016, 143.321), LatLng(-34.747, 145.592), LatLng(-34.364, 147.891), LatLng(-33.501, 150.217), LatLng(-32.306, 149.248), LatLng(-32.491, 147.309))) // Store a data object with the polyline, used here to indicate an arbitrary type. polyline1.tag = "A" // Style the polyline. stylePolyline(polyline1) val polyline2 = googleMap.addPolyline(PolylineOptions() .clickable(true) .add( LatLng(-29.501, 119.700), LatLng(-27.456, 119.672), LatLng(-25.971, 124.187), LatLng(-28.081, 126.555), LatLng(-28.848, 124.229), LatLng(-28.215, 123.938))) polyline2.tag = "B" stylePolyline(polyline2) // Add polygons to indicate areas on the map. val polygon1 = googleMap.addPolygon(PolygonOptions() .clickable(true) .add( LatLng(-27.457, 153.040), LatLng(-33.852, 151.211), LatLng(-37.813, 144.962), LatLng(-34.928, 138.599))) // Store a data object with the polygon, used here to indicate an arbitrary type. polygon1.tag = "alpha" // Style the polygon. stylePolygon(polygon1) val polygon2 = googleMap.addPolygon(PolygonOptions() .clickable(true) .add( LatLng(-31.673, 128.892), LatLng(-31.952, 115.857), LatLng(-17.785, 122.258), LatLng(-12.4258, 130.7932))) polygon2.tag = "beta" stylePolygon(polygon2) // Position the map's camera near Alice Springs in the center of Australia, // and set the zoom factor so most of Australia shows on the screen. googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(LatLng(-23.684, 133.903), 4f)) // Set listeners for click events. googleMap.setOnPolylineClickListener(this) googleMap.setOnPolygonClickListener(this) } private val COLOR_BLACK_ARGB = -0x1000000 private val POLYLINE_STROKE_WIDTH_PX = 12 /** * Styles the polyline, based on type. * @param polyline The polyline object that needs styling. */ private fun stylePolyline(polyline: Polyline) { // Get the data object stored with the polyline. val type = polyline.tag?.toString() ?: "" when (type) { "A" -> { // Use a custom bitmap as the cap at the start of the line. polyline.startCap = CustomCap( BitmapDescriptorFactory.fromResource(R.drawable.ic_arrow), 10f) } "B" -> { // Use a round cap at the start of the line. polyline.startCap = RoundCap() } } polyline.endCap = RoundCap() polyline.width = POLYLINE_STROKE_WIDTH_PX.toFloat() polyline.color = COLOR_BLACK_ARGB polyline.jointType = JointType.ROUND } private val PATTERN_GAP_LENGTH_PX = 20 private val DOT: PatternItem = Dot() private val GAP: PatternItem = Gap(PATTERN_GAP_LENGTH_PX.toFloat()) // Create a stroke pattern of a gap followed by a dot. private val PATTERN_POLYLINE_DOTTED = listOf(GAP, DOT) /** * Listens for clicks on a polyline. * @param polyline The polyline object that the user has clicked. */ override fun onPolylineClick(polyline: Polyline) { // Flip from solid stroke to dotted stroke pattern. if (polyline.pattern == null || !polyline.pattern!!.contains(DOT)) { polyline.pattern = PATTERN_POLYLINE_DOTTED } else { // The default pattern is a solid stroke. polyline.pattern = null } Toast.makeText(this, "Route type " + polyline.tag.toString(), Toast.LENGTH_SHORT).show() } /** * Listens for clicks on a polygon. * @param polygon The polygon object that the user has clicked. */ override fun onPolygonClick(polygon: Polygon) { // Flip the values of the red, green, and blue components of the polygon's color. var color = polygon.strokeColor xor 0x00ffffff polygon.strokeColor = color color = polygon.fillColor xor 0x00ffffff polygon.fillColor = color Toast.makeText(this, "Area type ${polygon.tag?.toString()}", Toast.LENGTH_SHORT).show() } private val COLOR_WHITE_ARGB = -0x1 private val COLOR_DARK_GREEN_ARGB = -0xc771c4 private val COLOR_LIGHT_GREEN_ARGB = -0x7e387c private val COLOR_DARK_ORANGE_ARGB = -0xa80e9 private val COLOR_LIGHT_ORANGE_ARGB = -0x657db private val POLYGON_STROKE_WIDTH_PX = 8 private val PATTERN_DASH_LENGTH_PX = 20 private val DASH: PatternItem = Dash(PATTERN_DASH_LENGTH_PX.toFloat()) // Create a stroke pattern of a gap followed by a dash. private val PATTERN_POLYGON_ALPHA = listOf(GAP, DASH) // Create a stroke pattern of a dot followed by a gap, a dash, and another gap. private val PATTERN_POLYGON_BETA = listOf(DOT, GAP, DASH, GAP) /** * Styles the polygon, based on type. * @param polygon The polygon object that needs styling. */ private fun stylePolygon(polygon: Polygon) { // Get the data object stored with the polygon. val type = polygon.tag?.toString() ?: "" var pattern: List<PatternItem>? = null var strokeColor = COLOR_BLACK_ARGB var fillColor = COLOR_WHITE_ARGB when (type) { "alpha" -> { // Apply a stroke pattern to render a dashed line, and define colors. pattern = PATTERN_POLYGON_ALPHA strokeColor = COLOR_DARK_GREEN_ARGB fillColor = COLOR_LIGHT_GREEN_ARGB } "beta" -> { // Apply a stroke pattern to render a line of dots and dashes, and define colors. pattern = PATTERN_POLYGON_BETA strokeColor = COLOR_DARK_ORANGE_ARGB fillColor = COLOR_LIGHT_ORANGE_ARGB } } polygon.strokePattern = pattern polygon.strokeWidth = POLYGON_STROKE_WIDTH_PX.toFloat() polygon.strokeColor = strokeColor polygon.fillColor = fillColor } }
अपना डेवलपमेंट प्रोजेक्ट सेट अप करें
Android Studio में ट्यूटोरियल प्रोजेक्ट बनाने के लिए यह तरीका अपनाएं.
- Android Studio डाउनलोड और इंस्टॉल करें.
- Android में Google Play services पैकेज जोड़ें स्टूडियो.
- Google Maps Android API v2 सैंपल डेटा स्टोर करने की जगह को क्लोन करें या डाउनलोड करें अगर आपने इस ट्यूटोरियल को पढ़ते समय वह नहीं किया था.
ट्यूटोरियल प्रोजेक्ट इंपोर्ट करें:
- Android Studio में, फ़ाइल > नया > प्रोजेक्ट इंपोर्ट करें.
- उस जगह पर जाएं जहां आपने Google Maps Android API v2 सैंपल को सेव किया है रिपॉज़िटरी को डाउनलोड करने के बाद उसे स्टोर करने की ज़रूरत नहीं है.
- इस जगह पर पॉलीगॉन प्रोजेक्ट ढूंढें:
PATH-TO-SAVED-REPO/android-samples/tutorials/java/Polygons
(Java) या
PATH-TO-SAVED-REPO/android-samples/tutorials/kotlin/Polygons
(कोटलिन) - प्रोजेक्ट डायरेक्ट्री चुनें. इसके बाद, खोलें पर क्लिक करें. Android Studio अब बिल्ड Gradle बिल्ड टूल का इस्तेमाल करके, अपने प्रोजेक्ट में मदद कर सकता है.
ज़रूरी एपीआई चालू करें और एपीआई पासकोड पाएं
इस ट्यूटोरियल को पूरा करने के लिए, आपको एक ऐसा Google Cloud प्रोजेक्ट चाहिए होगा जो एपीआई चालू होना और एक एपीआई पासकोड, जो Android के लिए Maps SDK का इस्तेमाल करने की अनुमति देता है. ज़्यादा जानकारी के लिए, यह देखें:
अपने ऐप्लिकेशन में एपीआई पासकोड जोड़ना
- अपने प्रोजेक्ट की
local.properties
फ़ाइल खोलें. यह स्ट्रिंग जोड़ें और फिर
YOUR_API_KEY
को इसके मान से बदल दें आपकी एपीआई कुंजी:MAPS_API_KEY=YOUR_API_KEY
ऐप्लिकेशन बनाने के बाद, Android के लिए सीक्रेट ग्रेडल प्लगिन एपीआई पासकोड को कॉपी करेगा और उसे Android मेनिफ़ेस्ट के बारे में ज़्यादा जानकारी नीचे दी गई है.
अपना ऐप्लिकेशन बनाएं और चलाएं
ऐप्लिकेशन बनाने और चलाने के लिए:
अपने कंप्यूटर से Android डिवाइस कनेक्ट करें. फ़ॉलो करें अपने Android पर डेवलपर के लिए सेटिंग और टूल की सुविधा चालू करने के लिए निर्देश डिवाइस पर जाएं और अपने सिस्टम को कॉन्फ़िगर करें, ताकि डिवाइस का पता लगाया जा सके.
इसके अलावा, Android वर्चुअल डिवाइस (एवीडी) मैनेजर का भी इस्तेमाल किया जा सकता है का इस्तेमाल करके वर्चुअल डिवाइस को कॉन्फ़िगर किया जा सकता है. कोई एमुलेटर चुनते समय, पक्का करें कि आपने ऐसी इमेज चुनी हो जिसमें Google API शामिल हों. ज़्यादा जानकारी के लिए, यह देखें Android Studio प्रोजेक्ट सेट अप करें .
Android Studio में, रन मेन्यू विकल्प (या 'चलाएं' बटन वाले आइकॉन) पर क्लिक करें. निर्देश के मुताबिक डिवाइस चुनें.
Android Studio, ऐप्लिकेशन बनाने के लिए Gradle को शुरू करता है और इसके बाद, ऐप्लिकेशन को डिवाइस या एम्युलेटर पर मौजूद है.
आपको ऑस्ट्रेलिया के ऊपर वाले हिस्से में, दो पॉलीगॉन के साथ एक मैप दिखेगा. ये दो पॉलीगॉन के ऊपर दिखेगी. इस पेज पर मौजूद इमेज.
समस्या का हल:
- अगर आपको कोई मैप नहीं दिखता, तो देखें कि आपने एपीआई पासकोड हासिल कर लिया है और उसे ऐप में, जैसा कि ऊपर बताया गया है. Android डिवाइस में लॉग इन की जांच करना एपीआई पासकोड से जुड़ी गड़बड़ी के मैसेज देखने के लिए, Studio का Android Monitor.
- लॉग और डीबग देखने के लिए, Android Studio के डीबग करने वाले टूल इस्तेमाल करना ऐप खोलें.
कोड को समझना
ट्यूटोरियल के इस हिस्से में, ट्यूटोरियल के सबसे अहम हिस्सों की जानकारी दी गई है पॉलीगॉन ऐप्लिकेशन. इससे आपको मिलती-जुलती इमेज बनाने का तरीका समझने में मदद मिलती है है.
अपना Android मेनिफ़ेस्ट देखें
अपने ऐप्लिकेशन की AndroidManifest.xml
फ़ाइल में इन एलिमेंट का ध्यान रखें:
Google Play services के वर्शन को एम्बेड करने के लिए,
meta-data
एलिमेंट जोड़ें इस ऐप्लिकेशन को कंपाइल किया गया.<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
एपीआई पासकोड की जानकारी देने वाला
meta-data
एलिमेंट जोड़ें. साथ में दिया गया सैंपल यह ट्यूटोरियल, एपीआई पासकोड की वैल्यू को बिल्ड वैरिएबल से मैच करने के लिए मैप करता है आपके ज़रिए पहले तय की गई कुंजी का नाम,MAPS_API_KEY
. ऐप्लिकेशन बनाते समय, Android के लिए सीक्रेट ग्रेडल प्लगिन आपकीlocal.properties
फ़ाइल में मौजूद कुंजियों को मेनिफ़ेस्ट बिल्ड के तौर पर उपलब्ध करा देगा वैरिएबल.<meta-data android:name="com.google.android.geo.API_KEY" android:value="${MAPS_API_KEY}" />
आपकी
build.gradle
फ़ाइल में, यह लाइन आपकी एपीआई पासकोड को आपके Android मेनिफ़ेस्ट.id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
यहां मेनिफ़ेस्ट का पूरा उदाहरण दिया गया है:
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2020 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> <!-- The API key for Google Maps-based APIs. --> <meta-data android:name="com.google.android.geo.API_KEY" android:value="${MAPS_API_KEY}" /> <activity android:name="com.example.polygons.PolyActivity" android:exported="true" android:label="@string/title_activity_maps"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
मैप जोड़ें
Android के लिए Maps SDK का इस्तेमाल करके मैप दिखाएं.
अपनी गतिविधि के लेआउट फ़ाइल में
<fragment>
एलिमेंट जोड़ें.activity_maps.xml
. यह एलिमेंट मैप के कंटेनर के तौर पर काम करने के लिएSupportMapFragment
औरGoogleMap
ऑब्जेक्ट का ऐक्सेस देने के लिए भी. ट्यूटोरियल यह पक्का करने के लिए कि मैप फ़्रैगमेंट के Android की सहायता लाइब्रेरी वाला वर्शन इस्तेमाल करता है Android फ़्रेमवर्क के पुराने वर्शन के साथ काम करने की सुविधा.<!-- Copyright 2020 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <fragment xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/map" android:name="com.google.android.gms.maps.SupportMapFragment" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.polygons.PolyActivity" />
अपनी गतिविधि के
onCreate()
तरीके में, लेआउट सेट करें फ़ाइल को कॉन्टेंट व्यू के तौर पर सेट कर सकता है. कॉल करके मैप फ़्रैगमेंट का हैंडल पाएंFragmentManager.findFragmentById()
. इसके बाद, इसका इस्तेमाल करें मैप कॉलबैक के लिए रजिस्टर करने के लिए,getMapAsync()
:Java
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps); // Get the SupportMapFragment and request notification when the map is ready to be used. SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map); mapFragment.getMapAsync(this); }
Kotlin
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps) // Get the SupportMapFragment and request notification when the map is ready to be used. val mapFragment = supportFragmentManager .findFragmentById(R.id.map) as SupportMapFragment? mapFragment?.getMapAsync(this) }
OnMapReadyCallback
इंटरफ़ेस लागू करें औरonMapReady()
तरीके को बदलें. एपीआई इसे शुरू करता हैGoogleMap
ऑब्जेक्ट उपलब्ध होने पर कॉलबैक करें, ताकि आप ऑब्जेक्ट को मैप में जोड़ सकता है और उसे अपने ऐप्लिकेशन के मुताबिक बना सकता है:Java
public class PolyActivity extends AppCompatActivity implements OnMapReadyCallback, GoogleMap.OnPolylineClickListener, GoogleMap.OnPolygonClickListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps); // Get the SupportMapFragment and request notification when the map is ready to be used. SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map); mapFragment.getMapAsync(this); } /** * Manipulates the map when it's available. * The API invokes this callback when the map is ready to be used. * This is where we can add markers or lines, add listeners or move the camera. * In this tutorial, we add polylines and polygons to represent routes and areas on the map. */ @Override public void onMapReady(GoogleMap googleMap) { // Add polylines to the map. // Polylines are useful to show a route or some other connection between points. Polyline polyline1 = googleMap.addPolyline(new PolylineOptions() .clickable(true) .add( new LatLng(-35.016, 143.321), new LatLng(-34.747, 145.592), new LatLng(-34.364, 147.891), new LatLng(-33.501, 150.217), new LatLng(-32.306, 149.248), new LatLng(-32.491, 147.309))); // Position the map's camera near Alice Springs in the center of Australia, // and set the zoom factor so most of Australia shows on the screen. googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-23.684, 133.903), 4)); // Set listeners for click events. googleMap.setOnPolylineClickListener(this); googleMap.setOnPolygonClickListener(this); }
Kotlin
class PolyActivity : AppCompatActivity(), OnMapReadyCallback, OnPolylineClickListener, OnPolygonClickListener { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps) // Get the SupportMapFragment and request notification when the map is ready to be used. val mapFragment = supportFragmentManager .findFragmentById(R.id.map) as SupportMapFragment? mapFragment?.getMapAsync(this) } /** * Manipulates the map when it's available. * The API invokes this callback when the map is ready to be used. * This is where we can add markers or lines, add listeners or move the camera. * In this tutorial, we add polylines and polygons to represent routes and areas on the map. */ override fun onMapReady(googleMap: GoogleMap) { // Add polylines to the map. // Polylines are useful to show a route or some other connection between points. val polyline1 = googleMap.addPolyline(PolylineOptions() .clickable(true) .add( LatLng(-35.016, 143.321), LatLng(-34.747, 145.592), LatLng(-34.364, 147.891), LatLng(-33.501, 150.217), LatLng(-32.306, 149.248), LatLng(-32.491, 147.309))) // Position the map's camera near Alice Springs in the center of Australia, // and set the zoom factor so most of Australia shows on the screen. googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(LatLng(-23.684, 133.903), 4f)) // Set listeners for click events. googleMap.setOnPolylineClickListener(this) googleMap.setOnPolygonClickListener(this) }
मैप पर लाइन बनाने के लिए, पॉलीलाइन जोड़ें
Polyline
, कनेक्ट किए गए लाइन सेगमेंट की सीरीज़ होती है. पॉलीलाइन यह हैं
इसकी मदद से, जगहों के बीच के रूट, पाथ या अन्य कनेक्शन दिखाए जा सकते हैं
मैप.
PolylineOptions
ऑब्जेक्ट बनाएं और उसमें पॉइंट जोड़ें. हर पॉइंट मैप पर एक जगह दिखाता है, जिसे आपLatLng
ऑब्जेक्ट में अक्षांश और देशांतर की वैल्यू हैं. कॉन्टेंट बनाने यहां दिया गया कोड सैंपल, 6 पॉइंट वाली पॉलीलाइन बनाता है.मैप पर पॉलीलाइन जोड़ने के लिए,
GoogleMap.addPolyline()
पर कॉल करें.Java
Polyline polyline1 = googleMap.addPolyline(new PolylineOptions() .clickable(true) .add( new LatLng(-35.016, 143.321), new LatLng(-34.747, 145.592), new LatLng(-34.364, 147.891), new LatLng(-33.501, 150.217), new LatLng(-32.306, 149.248), new LatLng(-32.491, 147.309)));
Kotlin
val polyline1 = googleMap.addPolyline(PolylineOptions() .clickable(true) .add( LatLng(-35.016, 143.321), LatLng(-34.747, 145.592), LatLng(-34.364, 147.891), LatLng(-33.501, 150.217), LatLng(-32.306, 149.248), LatLng(-32.491, 147.309)))
अगर आपको क्लिक मैनेज करना है, तो पॉलीलाइन के clickable
विकल्प को true
पर सेट करें
पॉलीलाइन पर इवेंट. इसमें बाद में इवेंट मैनेज करने के बारे में और जानकारी दी गई है
ट्यूटोरियल.
पॉलीलाइन की मदद से आर्बिट्रेरी डेटा सेव करना
आपके पास पॉलीलाइन और अन्य ज्यामिति ऑब्जेक्ट के साथ आर्बिट्रेरी डेटा ऑब्जेक्ट को सेव करने का विकल्प होता है.
किसी डेटा ऑब्जेक्ट को
Polyline.setTag()
पॉलीलाइन. नीचे दिया गया कोड एक आर्बिट्ररी टैग (A
) के बारे में बताता है, जो पॉलीलाइन.Java
Polyline polyline1 = googleMap.addPolyline(new PolylineOptions() .clickable(true) .add( new LatLng(-35.016, 143.321), new LatLng(-34.747, 145.592), new LatLng(-34.364, 147.891), new LatLng(-33.501, 150.217), new LatLng(-32.306, 149.248), new LatLng(-32.491, 147.309))); // Store a data object with the polyline, used here to indicate an arbitrary type. polyline1.setTag("A");
Kotlin
val polyline1 = googleMap.addPolyline(PolylineOptions() .clickable(true) .add( LatLng(-35.016, 143.321), LatLng(-34.747, 145.592), LatLng(-34.364, 147.891), LatLng(-33.501, 150.217), LatLng(-32.306, 149.248), LatLng(-32.491, 147.309))) // Store a data object with the polyline, used here to indicate an arbitrary type. polyline1.tag = "A
Polyline.getTag()
का इस्तेमाल करके डेटा वापस पाएं, अगला सेक्शन दिखता है.
अपनी पॉलीलाइन में पसंद के मुताबिक स्टाइल जोड़ना
आप इसमें अलग-अलग स्टाइलिंग प्रॉपर्टी के बारे में बता सकते हैं
PolylineOptions
ऑब्जेक्ट. स्टाइल के विकल्पों में स्ट्रोक शामिल है
रंग, स्ट्रोक की चौड़ाई, स्ट्रोक पैटर्न, जॉइंट टाइप, और स्टार्ट और एंड कैप. अगर आपको
किसी खास प्रॉपर्टी के बारे में बताने से बचें, एपीआई उसके लिए डिफ़ॉल्ट प्रॉपर्टी का इस्तेमाल करता है
प्रॉपर्टी.
नीचे दिया गया कोड, लाइन के आखिर में एक राउंड कैप लागू करता है और पॉलीलाइन के टाइप के आधार पर स्टार्ट कैप, जहां टाइप आर्बिट्रेरी है प्रॉपर्टी को पॉलीलाइन के लिए डेटा ऑब्जेक्ट में सेव किया गया है. सैंपल यह भी बताता है कि स्ट्रोक की चौड़ाई, स्ट्रोक का रंग, और जॉइंट टाइप:
Java
private static final int COLOR_BLACK_ARGB = 0xff000000; private static final int POLYLINE_STROKE_WIDTH_PX = 12; /** * Styles the polyline, based on type. * @param polyline The polyline object that needs styling. */ private void stylePolyline(Polyline polyline) { String type = ""; // Get the data object stored with the polyline. if (polyline.getTag() != null) { type = polyline.getTag().toString(); } switch (type) { // If no type is given, allow the API to use the default. case "A": // Use a custom bitmap as the cap at the start of the line. polyline.setStartCap( new CustomCap( BitmapDescriptorFactory.fromResource(R.drawable.ic_arrow), 10)); break; case "B": // Use a round cap at the start of the line. polyline.setStartCap(new RoundCap()); break; } polyline.setEndCap(new RoundCap()); polyline.setWidth(POLYLINE_STROKE_WIDTH_PX); polyline.setColor(COLOR_BLACK_ARGB); polyline.setJointType(JointType.ROUND); }
Kotlin
private val COLOR_BLACK_ARGB = -0x1000000 private val POLYLINE_STROKE_WIDTH_PX = 12 /** * Styles the polyline, based on type. * @param polyline The polyline object that needs styling. */ private fun stylePolyline(polyline: Polyline) { // Get the data object stored with the polyline. val type = polyline.tag?.toString() ?: "" when (type) { "A" -> { // Use a custom bitmap as the cap at the start of the line. polyline.startCap = CustomCap( BitmapDescriptorFactory.fromResource(R.drawable.ic_arrow), 10f) } "B" -> { // Use a round cap at the start of the line. polyline.startCap = RoundCap() } } polyline.endCap = RoundCap() polyline.width = POLYLINE_STROKE_WIDTH_PX.toFloat() polyline.color = COLOR_BLACK_ARGB polyline.jointType = JointType.ROUND }
ऊपर दिया गया कोड टाइप A के स्टार्ट कैप के लिए कस्टम बिट मैप तय करता है पॉलीलाइन और 10 पिक्सल की रेफ़रंस स्ट्रोक चौड़ाई बताता है. एपीआई की स्केलिंग बिट मैप को रेफ़रंस स्ट्रोक की चौड़ाई पर आधारित होता है. रेफ़रंस के बारे में जानकारी देते समय स्ट्रोक की चौड़ाई, उस चौड़ाई की आपूर्ति करें जिसका उपयोग आप बिट मैप चित्र डिज़ाइन करते समय करते हैं, इमेज का ओरिजनल डाइमेंशन. संकेत: अपनी बिट मैप इमेज को 100% ज़ूम पर खोलें और इसके मुकाबले, किसी इमेज एडिटर में लाइन स्ट्रोक की मनचाहे चौड़ाई को प्लॉट करें इमेज.
लाइन कैप और अन्य विकल्पों के बारे में ज़्यादा जानें आकारों को कस्टमाइज़ करना.
पॉलीलाइन पर क्लिक इवेंट मैनेज करना
इस नंबर पर कॉल करके, पॉलीलाइन को क्लिक करने लायक बनाएं
Polyline.setClickable()
. (डिफ़ॉल्ट रूप से, पॉलीलाइन इस लिंक पर क्लिक नहीं किया जा सकेगा और जब उपयोगकर्ता आपके ऐप्लिकेशन को पॉलीलाइन पर टैप करता है.)OnPolylineClickListener
इंटरफ़ेस को लागू करना औरGoogleMap.setOnPolylineClickListener()
पर कॉल करें लिसनर को मैप पर सेट करने के लिए:Java
public class PolyActivity extends AppCompatActivity implements OnMapReadyCallback, GoogleMap.OnPolylineClickListener, GoogleMap.OnPolygonClickListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps); // Get the SupportMapFragment and request notification when the map is ready to be used. SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map); mapFragment.getMapAsync(this); } /** * Manipulates the map when it's available. * The API invokes this callback when the map is ready to be used. * This is where we can add markers or lines, add listeners or move the camera. * In this tutorial, we add polylines and polygons to represent routes and areas on the map. */ @Override public void onMapReady(GoogleMap googleMap) { // Add polylines to the map. // Polylines are useful to show a route or some other connection between points. Polyline polyline1 = googleMap.addPolyline(new PolylineOptions() .clickable(true) .add( new LatLng(-35.016, 143.321), new LatLng(-34.747, 145.592), new LatLng(-34.364, 147.891), new LatLng(-33.501, 150.217), new LatLng(-32.306, 149.248), new LatLng(-32.491, 147.309))); // Position the map's camera near Alice Springs in the center of Australia, // and set the zoom factor so most of Australia shows on the screen. googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(-23.684, 133.903), 4)); // Set listeners for click events. googleMap.setOnPolylineClickListener(this); googleMap.setOnPolygonClickListener(this); }
Kotlin
class PolyActivity : AppCompatActivity(), OnMapReadyCallback, OnPolylineClickListener, OnPolygonClickListener { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // Retrieve the content view that renders the map. setContentView(R.layout.activity_maps) // Get the SupportMapFragment and request notification when the map is ready to be used. val mapFragment = supportFragmentManager .findFragmentById(R.id.map) as SupportMapFragment? mapFragment?.getMapAsync(this) } /** * Manipulates the map when it's available. * The API invokes this callback when the map is ready to be used. * This is where we can add markers or lines, add listeners or move the camera. * In this tutorial, we add polylines and polygons to represent routes and areas on the map. */ override fun onMapReady(googleMap: GoogleMap) { // Add polylines to the map. // Polylines are useful to show a route or some other connection between points. val polyline1 = googleMap.addPolyline(PolylineOptions() .clickable(true) .add( LatLng(-35.016, 143.321), LatLng(-34.747, 145.592), LatLng(-34.364, 147.891), LatLng(-33.501, 150.217), LatLng(-32.306, 149.248), LatLng(-32.491, 147.309))) // Position the map's camera near Alice Springs in the center of Australia, // and set the zoom factor so most of Australia shows on the screen. googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(LatLng(-23.684, 133.903), 4f)) // Set listeners for click events. googleMap.setOnPolylineClickListener(this) googleMap.setOnPolygonClickListener(this) }
onPolylineClick()
कॉलबैक का तरीका बदलें. कॉन्टेंट बनाने नीचे दिया गया उदाहरण सॉलिड और उसके बीच की लाइन के स्ट्रोक पैटर्न को बदलता है डॉट वाली हर बार जब उपयोगकर्ता पॉलीलाइन पर क्लिक करेगा, तो:Java
private static final int PATTERN_GAP_LENGTH_PX = 20; private static final PatternItem DOT = new Dot(); private static final PatternItem GAP = new Gap(PATTERN_GAP_LENGTH_PX); // Create a stroke pattern of a gap followed by a dot. private static final List<PatternItem> PATTERN_POLYLINE_DOTTED = Arrays.asList(GAP, DOT); /** * Listens for clicks on a polyline. * @param polyline The polyline object that the user has clicked. */ @Override public void onPolylineClick(Polyline polyline) { // Flip from solid stroke to dotted stroke pattern. if ((polyline.getPattern() == null) || (!polyline.getPattern().contains(DOT))) { polyline.setPattern(PATTERN_POLYLINE_DOTTED); } else { // The default pattern is a solid stroke. polyline.setPattern(null); } Toast.makeText(this, "Route type " + polyline.getTag().toString(), Toast.LENGTH_SHORT).show(); }
Kotlin
private val PATTERN_GAP_LENGTH_PX = 20 private val DOT: PatternItem = Dot() private val GAP: PatternItem = Gap(PATTERN_GAP_LENGTH_PX.toFloat()) // Create a stroke pattern of a gap followed by a dot. private val PATTERN_POLYLINE_DOTTED = listOf(GAP, DOT) /** * Listens for clicks on a polyline. * @param polyline The polyline object that the user has clicked. */ override fun onPolylineClick(polyline: Polyline) { // Flip from solid stroke to dotted stroke pattern. if (polyline.pattern == null || !polyline.pattern!!.contains(DOT)) { polyline.pattern = PATTERN_POLYLINE_DOTTED } else { // The default pattern is a solid stroke. polyline.pattern = null } Toast.makeText(this, "Route type " + polyline.tag.toString(), Toast.LENGTH_SHORT).show() }
मैप पर इलाके दिखाने के लिए पॉलीगॉन जोड़ें
Polygon
एक आकृति होती है जिसमें निर्देशांक की एक सीरीज़ होती है
ऑर्डर किया गया क्रम, Polyline
की तरह है. अंतर यह है कि
पॉलीगॉन एक बंद क्षेत्र को परिभाषित करता है जिसमें अंदर से भरा हुआ हिस्सा होता है, जबकि पॉलिलाइन
ओपन एंडेड है.
PolygonOptions
ऑब्जेक्ट बनाएं और उसमें पॉइंट जोड़ें. हर पॉइंट मैप पर एक जगह दिखाता है, जिसे आपLatLng
ऑब्जेक्ट में अक्षांश और देशांतर की वैल्यू हैं. कॉन्टेंट बनाने नीचे दिया गया कोड सैंपल 4 पॉइंट वाला पॉलीगॉन बनाता है.कॉल करके पॉलीगॉन को क्लिक करने लायक बनाएं
Polygon.setClickable()
. (डिफ़ॉल्ट रूप से, पॉलीगॉन इस लिंक पर क्लिक नहीं किया जा सकेगा और जब उपयोगकर्ता आपके ऐप्लिकेशन को पॉलीगॉन पर टैप करता है.) पॉलीगॉन क्लिक इवेंट को मैनेज करना, इस ट्यूटोरियल में ऊपर बताई गई पॉलीलाइन पर हुए इवेंट के बारे में बताया गया है.मैप में पॉलीगॉन जोड़ने के लिए,
GoogleMap.addPolygon()
पर कॉल करें.किसी डेटा ऑब्जेक्ट को
Polygon.setTag()
पॉलीगॉन. नीचे दिया गया कोड पॉलीगॉन के लिए आर्बिट्रेरी टाइप (alpha
) बताता है.Java
// Add polygons to indicate areas on the map. Polygon polygon1 = googleMap.addPolygon(new PolygonOptions() .clickable(true) .add( new LatLng(-27.457, 153.040), new LatLng(-33.852, 151.211), new LatLng(-37.813, 144.962), new LatLng(-34.928, 138.599))); // Store a data object with the polygon, used here to indicate an arbitrary type. polygon1.setTag("alpha");
Kotlin
// Add polygons to indicate areas on the map. val polygon1 = googleMap.addPolygon(PolygonOptions() .clickable(true) .add( LatLng(-27.457, 153.040), LatLng(-33.852, 151.211), LatLng(-37.813, 144.962), LatLng(-34.928, 138.599))) // Store a data object with the polygon, used here to indicate an arbitrary type. polygon1.tag = "alpha" // Style the polygon.
अपने पॉलीगॉन में पसंद के मुताबिक स्टाइल जोड़ना
आपके पास कई स्टाइलिंग प्रॉपर्टी तय करने का विकल्प है.
PolygonOptions
ऑब्जेक्ट. स्टाइल के विकल्पों में स्ट्रोक शामिल है
रंग, स्ट्रोक की चौड़ाई, स्ट्रोक पैटर्न, स्ट्रोक जॉइंट टाइप, और फ़िल कलर. अगर आपको
किसी खास प्रॉपर्टी के बारे में बताने से बचें, एपीआई उसके लिए डिफ़ॉल्ट प्रॉपर्टी का इस्तेमाल करता है
प्रॉपर्टी.
नीचे दिया गया कोड, पॉलीगॉन का टाइप, जहां टाइप, डेटा में स्टोर की गई कोई आर्बिट्रेरी प्रॉपर्टी है पॉलीगॉन के लिए ऑब्जेक्ट:
Java
private static final int COLOR_WHITE_ARGB = 0xffffffff; private static final int COLOR_DARK_GREEN_ARGB = 0xff388E3C; private static final int COLOR_LIGHT_GREEN_ARGB = 0xff81C784; private static final int COLOR_DARK_ORANGE_ARGB = 0xffF57F17; private static final int COLOR_LIGHT_ORANGE_ARGB = 0xffF9A825; private static final int POLYGON_STROKE_WIDTH_PX = 8; private static final int PATTERN_DASH_LENGTH_PX = 20; private static final PatternItem DASH = new Dash(PATTERN_DASH_LENGTH_PX); // Create a stroke pattern of a gap followed by a dash. private static final List<PatternItem> PATTERN_POLYGON_ALPHA = Arrays.asList(GAP, DASH); // Create a stroke pattern of a dot followed by a gap, a dash, and another gap. private static final List<PatternItem> PATTERN_POLYGON_BETA = Arrays.asList(DOT, GAP, DASH, GAP); /** * Styles the polygon, based on type. * @param polygon The polygon object that needs styling. */ private void stylePolygon(Polygon polygon) { String type = ""; // Get the data object stored with the polygon. if (polygon.getTag() != null) { type = polygon.getTag().toString(); } List<PatternItem> pattern = null; int strokeColor = COLOR_BLACK_ARGB; int fillColor = COLOR_WHITE_ARGB; switch (type) { // If no type is given, allow the API to use the default. case "alpha": // Apply a stroke pattern to render a dashed line, and define colors. pattern = PATTERN_POLYGON_ALPHA; strokeColor = COLOR_DARK_GREEN_ARGB; fillColor = COLOR_LIGHT_GREEN_ARGB; break; case "beta": // Apply a stroke pattern to render a line of dots and dashes, and define colors. pattern = PATTERN_POLYGON_BETA; strokeColor = COLOR_DARK_ORANGE_ARGB; fillColor = COLOR_LIGHT_ORANGE_ARGB; break; } polygon.setStrokePattern(pattern); polygon.setStrokeWidth(POLYGON_STROKE_WIDTH_PX); polygon.setStrokeColor(strokeColor); polygon.setFillColor(fillColor); }
Kotlin
private val COLOR_WHITE_ARGB = -0x1 private val COLOR_DARK_GREEN_ARGB = -0xc771c4 private val COLOR_LIGHT_GREEN_ARGB = -0x7e387c private val COLOR_DARK_ORANGE_ARGB = -0xa80e9 private val COLOR_LIGHT_ORANGE_ARGB = -0x657db private val POLYGON_STROKE_WIDTH_PX = 8 private val PATTERN_DASH_LENGTH_PX = 20 private val DASH: PatternItem = Dash(PATTERN_DASH_LENGTH_PX.toFloat()) // Create a stroke pattern of a gap followed by a dash. private val PATTERN_POLYGON_ALPHA = listOf(GAP, DASH) // Create a stroke pattern of a dot followed by a gap, a dash, and another gap. private val PATTERN_POLYGON_BETA = listOf(DOT, GAP, DASH, GAP) /** * Styles the polygon, based on type. * @param polygon The polygon object that needs styling. */ private fun stylePolygon(polygon: Polygon) { // Get the data object stored with the polygon. val type = polygon.tag?.toString() ?: "" var pattern: List<PatternItem>? = null var strokeColor = COLOR_BLACK_ARGB var fillColor = COLOR_WHITE_ARGB when (type) { "alpha" -> { // Apply a stroke pattern to render a dashed line, and define colors. pattern = PATTERN_POLYGON_ALPHA strokeColor = COLOR_DARK_GREEN_ARGB fillColor = COLOR_LIGHT_GREEN_ARGB } "beta" -> { // Apply a stroke pattern to render a line of dots and dashes, and define colors. pattern = PATTERN_POLYGON_BETA strokeColor = COLOR_DARK_ORANGE_ARGB fillColor = COLOR_LIGHT_ORANGE_ARGB } } polygon.strokePattern = pattern polygon.strokeWidth = POLYGON_STROKE_WIDTH_PX.toFloat() polygon.strokeColor = strokeColor polygon.fillColor = fillColor }
स्ट्रोक पैटर्न और अन्य विकल्पों के बारे में आकारों को कस्टमाइज़ करना.
अगले चरण
सर्कल ऑब्जेक्ट के बारे में जानें. वृत्त बहुभुजों के समान होते हैं लेकिन इसमें वृत्त का आकार दिखाने वाले गुण होते हैं.