blob: e13897f55eb9307ae767fdf2870e6157839c6728 (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
package cgeo.geocaching.maps.google;
import cgeo.geocaching.R;
import cgeo.geocaching.cgeoapplication;
import cgeo.geocaching.maps.AbstractMapProvider;
import cgeo.geocaching.maps.AbstractMapSource;
import cgeo.geocaching.maps.MapProviderFactory;
import cgeo.geocaching.maps.interfaces.MapItemFactory;
import cgeo.geocaching.maps.interfaces.MapProvider;
import cgeo.geocaching.maps.interfaces.MapSource;
import com.google.android.maps.MapActivity;
import android.content.res.Resources;
import java.util.HashMap;
import java.util.Map;
public final class GoogleMapProvider extends AbstractMapProvider {
private final static int MAP = 1;
private final static int SATELLITE = 2;
private final Map<Integer, MapSource> mapSources;
private int baseId;
private final MapItemFactory mapItemFactory;
public GoogleMapProvider(int _baseId) {
baseId = _baseId;
final Resources resources = cgeoapplication.getInstance().getResources();
mapSources = new HashMap<Integer, MapSource>();
mapSources.put(baseId + MAP, new GoogleMapSource(this, resources.getString(R.string.map_source_google_map)));
mapSources.put(baseId + SATELLITE, new GoogleMapSatelliteSource(this, resources.getString(R.string.map_source_google_satellite)));
mapItemFactory = new GoogleMapItemFactory();
}
@Override
public Map<Integer, MapSource> getMapSources() {
return mapSources;
}
public static boolean isSatelliteSource(final int sourceId) {
final MapSource mapSource = MapProviderFactory.getMapSource(sourceId);
return mapSource != null && mapSource instanceof GoogleMapSatelliteSource;
}
@Override
public Class<? extends MapActivity> getMapClass() {
return GoogleMapActivity.class;
}
@Override
public int getMapViewId() {
return R.id.map;
}
@Override
public int getMapLayoutId() {
return R.layout.map_google;
}
@Override
public MapItemFactory getMapItemFactory() {
return mapItemFactory;
}
@Override
public boolean isSameActivity(int sourceId1, int sourceId2) {
return true;
}
private static class GoogleMapSource extends AbstractMapSource {
public GoogleMapSource(final MapProvider mapProvider, final String name) {
super(mapProvider, name);
}
}
private static final class GoogleMapSatelliteSource extends GoogleMapSource {
public GoogleMapSatelliteSource(MapProvider mapProvider, String name) {
super(mapProvider, name);
}
}
}
|