android - 我想在 android 应用程序中发布 geosever 层,使用 arcgis SDK,我已经完成了代码但它不起作用,请告诉我我做错了什么?

标签 android geoserver

我是第一次做Android编程,想用ArcGis SDK map 图层显示一个GeoServer图层。我已经完成了代码,但它不起作用,请告诉我我做错了什么。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.subrata.mymap.MainActivity">

<com.esri.android.map.MapView
    android:id="@+id/map"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    mapoptions.MapType="Aerial"
    mapoptions.center="28, 77"
    mapoptions.ZoomLevel="10">
</com.esri.android.map.MapView>
</RelativeLayout>

主要 Activity .java

package com.example.subrata.mymap;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import com.esri.android.map.MapView;
import com.esri.android.map.ogc.WMSLayer;


public class MainActivity extends AppCompatActivity {
MapView mMapView;
WMSLayer wmsLayer;
String wmsURL;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mMapView = (MapView)findViewById(R.id.map);

    wmsURL = "http://localhost:8081/geoserver/NFR-SR/wms";
    wmsLayer = new WMSLayer(wmsURL);
    wmsLayer.setImageFormat("application/openlayers");
    // available layers
    String[] visibleLayers = {"NFR-SR:Ridgeline_SR"};
    wmsLayer.setVisibleLayer(visibleLayers);
    wmsLayer.setOpacity(0.5f);
    mMapView.addLayer(wmsLayer);


    mMapView.setEsriLogoVisible(false);
    mMapView.enableWrapAround(true);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
   getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
}

最佳答案

如果没有任何日志或解释,无法真正说明您的意思。 以下是一些可能的原因:

  1. 无法通过 url http://localhost:8081/geoserver/NFR-SR/wms 访问服务器
  2. 图层名称 NFR-SR:未找到 Ridgeline_SR
  3. map 服务不支持应用程序/openlayers
  4. 它甚至可能正在运行,但您正在查看不包含任何数据的 map 范围。

关于android - 我想在 android 应用程序中发布 geosever 层,使用 arcgis SDK,我已经完成了代码但它不起作用,请告诉我我做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46273737/

相关文章:

android - 如何在 Android 应用程序中保护密码

geoserver - GeoMesa - 支持的数据存储之间的差异?

android - 在 android 开发 "R cannot be resolved to a variable"和布局中也出现错误

javascript - 获取已在 OpenLayers 3 中单击的图层的要素属性

postgis - Openlayers-3 WFS-T(通过 geoserver 将功能发布到 postgis)

sql-server - Geoserver 无法识别空间列

android - 膨胀 MapView 时出现问题

Android fragment 在 iOS 的 swift 中模拟

android - 带阴影的圆环图像