将折线坐标存储在xml资源中

时间:2017-02-08 07:36:45

标签: android xml google-maps maps

我正在绘制具有很多分数的折线(我将它们与道路相连)。现在我的代码看起来像这样:

 PolylineOptions rectOptions = new PolylineOptions()
            .add(new LatLng(47.183845335746227, 18.408230864565329))
            .add(new LatLng(47.1835746, 18.4079741))
            .
            .
            .
            .
            .
            .add(new LatLng(47.183364399999995, 18.4078905));
rectOptions.color(Color.RED);
mMap.addPolyline(rectOptions);

我想将这些坐标存储在res / values / coordinates中的xml文件中,并且我有几条折线,所以我想将它们的坐标存储在几个文件中。我怎么能这样做?

0 个答案:

没有答案