guoshilong
2023-11-13 68f80a7451a126335153ec00bb6cb520a5ae1f8d
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
package com.dji.sample.manage.model.enums;
 
/**
 * The system icon that comes with the pilot.
 * @author sean
 * @version 0.3
 * @date 2022/1/5
 */
public enum IconUrlEnum {
 
    SELECT_CAR("resource://pilot/drawable/tsa_car_select"),
 
    NORMAL_CAR("resource://pilot/drawable/tsa_car_normal"),
 
    SELECT_PERSON("resource://pilot/drawable/tsa_person_select"),
 
    NORMAL_PERSON("resource://pilot/drawable/tsa_person_normal"),
 
    SELECT_EQUIPMENT("resource://pilot/drawable/tsa_equipment_select"),
 
    NORMAL_EQUIPMENT("resource://pilot/drawable/tsa_equipment_normal");
 
    /**
     * You can use icons from the web, and the App internally downloads and caches these icons and
     * loads them at a fixed size (28dp) to display on the map.
     * Example: http://r56978dr7.hn-bkt.clouddn.com/tsa_equipment_normal.png
     */
    private String url;
 
    IconUrlEnum(String url) {
        this.url = url;
    }
 
    public String getUrl() {
        return url;
    }
}