ক্লিক ইভেন্টগুলি পরিচালনা করুন

প্ল্যাটফর্ম নির্বাচন করুন: অ্যান্ড্রয়েড আইওএস জাভাস্ক্রিপ্ট

ক্লিক করা সীমানার জন্য স্থান আইডি এবং বৈশিষ্ট্যের ধরন পেতে আপনি ব্যবহারকারীর click ইভেন্টগুলিতে প্রতিক্রিয়া জানাতে একটি বৈশিষ্ট্য স্তর তৈরি করতে পারেন। নিম্নলিখিত উদাহরণ মানচিত্রটি দেশের স্তরের সীমানা দেখায় এবং একটি ইভেন্ট হ্যান্ডলার দেখায় যা নির্বাচিত দেশের সাথে যুক্ত ক্লিক করা বহুভুজকে স্টাইল করে।

একটি ক্লিক ইভেন্ট হ্যান্ডলার লিখুন

যখন একটি বৈশিষ্ট্য স্তরে একটি ক্লিক ইভেন্ট ঘটে, তখন Android এর জন্য Maps SDK একটি FeatureClickEvent অবজেক্ট ইভেন্ট হ্যান্ডলারকে পাস করে৷ ক্লিকের অক্ষাংশ এবং দ্রাঘিমাংশ স্থানাঙ্ক এবং ক্লিক দ্বারা প্রভাবিত বৈশিষ্ট্যগুলির একটি তালিকা পেতে FeatureClickEvent ব্যবহার করুন৷

বৈশিষ্ট্য স্তর ইভেন্ট পরিচালনা করুন

একটি বৈশিষ্ট্য স্তরে ইভেন্টগুলি পরিচালনা করতে নিম্নলিখিত পদক্ষেপগুলি নিন৷ এই উদাহরণে, আপনি নির্বাচিত দেশের প্রতিনিধিত্বকারী বহুভুজটিতে একটি লাল ফিল প্রয়োগ করার জন্য দেশ বৈশিষ্ট্য স্তরের জন্য একটি ক্লিক ইভেন্ট হ্যান্ডলার সংজ্ঞায়িত করুন।

আপনি যখন FeatureLayer.setFeatureStyle() কল করেন, স্টাইল ফ্যাক্টরি ফাংশন বৈশিষ্ট্য স্তরের সমস্ত বৈশিষ্ট্যের উপর শৈলী সেট করে। ইভেন্ট হ্যান্ডলারে একটি বৈশিষ্ট্যের শৈলী আপডেট করতে, আপনাকে অবশ্যই FeatureLayer.setFeatureStyle() কল করতে হবে যাতে সমস্ত বৈশিষ্ট্যে আপডেট করা শৈলী সেট করা যায়৷

  1. যদি আপনি ইতিমধ্যে এটি না করে থাকেন, তাহলে একটি নতুন মানচিত্র ID এবং মানচিত্রের শৈলী তৈরি করতে শুরু করুন -এর ধাপগুলি অনুসরণ করুন৷ দেশ বৈশিষ্ট্য স্তর সক্রিয় করতে ভুলবেন না.

  2. নিশ্চিত করুন যে আপনার ক্লাসটি FeatureLayer.OnFeatureClickListener প্রয়োগ করে।

  3. FeatureLayer.addOnFeatureClickListener() কল করে বৈশিষ্ট্য ক্লিক ইভেন্টের জন্য একটি ইভেন্ট হ্যান্ডলার নিবন্ধন করুন।

    জাভা

    private FeatureLayer countryLayer;
    @Override public void onMapReady(GoogleMap map) {
    // Get the COUNTRY feature layer. countryLayer = map.getFeatureLayer(new FeatureLayerOptions.Builder() .featureType(FeatureType.COUNTRY) .build());
    // Register the click event handler for the Country layer. countryLayer.addOnFeatureClickListener(this);
    // Apply default style to all countries on load to enable clicking. styleCountryLayer(); }
    // Set default fill and border for all countries to ensure that they respond // to click events. private void styleCountryLayer() { FeatureLayer.StyleFactory styleFactory = (Feature feature) -> { return new FeatureStyle.Builder() // Set the fill color for the country as white with a 10% opacity. .fillColor(Color.argb(0.1, 0, 0, 0)) // Set border color to solid black. .strokeColor(Color.BLACK) .build(); };
    // Apply the style factory function to the country feature layer. countryLayer.setFeatureStyle(styleFactory); }

    কোটলিন

    private var countryLayer: FeatureLayer? = null
    override fun onMapReady(googleMap: GoogleMap) { // Get the COUNTRY feature layer. countryLayer = googleMap.getFeatureLayer(FeatureLayerOptions.Builder() .featureType(FeatureType.COUNTRY) .build())
    // Register the click event handler for the Country layer. countryLayer?.addOnFeatureClickListener(this)
    // Apply default style to all countries on load to enable clicking. styleCountryLayer() }
    // Set default fill and border for all countries to ensure that they respond // to click events. private fun styleCountryLayer() { val styleFactory = FeatureLayer.StyleFactory { feature: Feature -> return@StyleFactory FeatureStyle.Builder() // Set the fill color for the country as white with a 10% opacity. .fillColor(Color.argb(0.1f, 0f, 0f, 0f)) // Set border color to solid black. .strokeColor(Color.BLACK) .build() }
    // Apply the style factory function to the country feature layer. countryLayer?.setFeatureStyle(styleFactory) }

  4. নির্বাচিত দেশে লাল রঙের একটি পূরণ করুন। শুধুমাত্র দৃশ্যমান বৈশিষ্ট্য ক্লিকযোগ্য.

    জাভা

    @Override
    // Define the click event handler.
    public void onFeatureClick(FeatureClickEvent event) {
    // Get the list of features affected by the click using // getPlaceIds() defined below. List<String> selectedPlaceIds = getPlaceIds(event.getFeatures());
    if (!selectedPlaceIds.isEmpty()) { FeatureLayer.StyleFactory styleFactory = (Feature feature) -> { // Use PlaceFeature to get the placeID of the country. if (feature instanceof PlaceFeature) { if (selectedPlaceIds.contains(((PlaceFeature) feature).getPlaceId())) { return new FeatureStyle.Builder() // Set the fill color to red. .fillColor(Color.RED) .build(); } } return null; };
    // Apply the style factory function to the feature layer. countryLayer.setFeatureStyle(styleFactory); } }
    // Get a List of place IDs from the FeatureClickEvent object. private List<String> getPlaceIds(List<Feature> features) { List<String> placeIds = new ArrayList<>(); for (Feature feature : features) { if (feature instanceof PlaceFeature) { placeIds.add(((PlaceFeature) feature).getPlaceId()); } } return placeIds; }

    কোটলিন

    // Define the click event handler.
    override fun onFeatureClick(event: FeatureClickEvent) {
    // Get the list of features affected by the click using // getPlaceIds() defined below. val selectedPlaceIds = getPlaceIds(event.getFeatures()) if (!selectedPlaceIds.isEmpty()) { val styleFactory = FeatureLayer.StyleFactory { feature: Feature -> // Use PlaceFeature to get the placeID of the country. if (feature is PlaceFeature) { if (selectedPlaceIds.contains((feature as PlaceFeature).getPlaceId())) { return@StyleFactory FeatureStyle.Builder() // Set the fill color to red. .fillColor(Color.RED) .build() } } return@StyleFactory null }
    // Apply the style factory function to the feature layer. countryLayer?.setFeatureStyle(styleFactory) } }
    // Get a List of place IDs from the FeatureClickEvent object. private fun getPlaceIds(features: List<Feature>): List<String> { val placeIds: MutableList<String> = ArrayList() for (feature in features) { if (feature is PlaceFeature) { placeIds.add((feature as PlaceFeature).getPlaceId()) } } return placeIds }