Set viewpoint rotation

View on GitHubSample viewer app

Rotate a map.

Image of set viewpoint rotation

Use case

A user may wish to view the map in an orientation other than north-facing.

How to use the sample

Use the slider to rotate the map. If the map is not pointed north, the slider will show the heading relative to north in degrees. Slide the slider to zero to set the map's heading back to north.

How it works

  1. Instantiate an ArcGISMap object.
  2. Set the map to a MapView object.
  3. Use awaitSetViewpointRotation(...) to set the rotation angle.

Relevant API

  • ArcGISMap
  • MapView

Tags

rotate, rotation, viewpoint

Sample Code

MainActivity.kt
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Copyright 2022 Esri
 *
 * 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.esri.arcgismaps.sample.setviewpointrotation

import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.databinding.DataBindingUtil
import androidx.lifecycle.lifecycleScope
import com.arcgismaps.ApiKey
import com.arcgismaps.ArcGISEnvironment
import com.arcgismaps.mapping.ArcGISMap
import com.arcgismaps.mapping.BasemapStyle
import com.arcgismaps.mapping.Viewpoint
import com.esri.arcgismaps.sample.setviewpointrotation.databinding.ActivityMainBinding
import kotlinx.coroutines.launch

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        // authentication with an API key or named user is
        // required to access basemaps and other location services
        ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.API_KEY)

        // set up data binding for the activity
        val activityMainBinding: ActivityMainBinding =
            DataBindingUtil.setContentView(this, R.layout.activity_main)
        val mapView = activityMainBinding.mapView
        val rotationSlider = activityMainBinding.rotationSlider
        val rotationValueText = activityMainBinding.rotationValueText
        lifecycle.addObserver(mapView)

        // create a map with a topographic basemap and initial position
        val map = ArcGISMap(BasemapStyle.ArcGISTopographic)
        // set the map to be displayed in this view
        mapView.map = map
        mapView.setViewpoint(Viewpoint(34.056295, -117.195800, 10000.0))

        rotationSlider.addOnChangeListener { _, angle, _ ->
            // set the text to the value
            rotationValueText.text = angle.toInt().toString()
            // rotate map view to the progress angle
            lifecycleScope.launch {
                mapView.setViewpointRotation(angle.toDouble())
            }
        }
    }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.