传单地图和jquery移动如何修复地图

时间:2015-09-24 20:20:33

标签: android cordova jquery-mobile leaflet

我花了很多时间寻找和尝试解决方案的代码,如何使用传单和jquery移动显示地图,但我找不到解决方案。我展示了一个列表视图,当我点击它时,地图会显示一个带有lat,lon的图标,但我明白了。

任何人都可以帮助我。

image

这是我的代码。我需要你一张回复地图。

document.getElementById('weathermap').innerHTML = "<div id='map' style='min-height: 320px; height: 100%; margin: -15px;'></div>";

我使用这段代码,因为当我创建一个地图时,我得到一个消息地图容器已被初始化。代码显示地图。

package test;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;

public class WhoisQuery {

    public static void main(String[] args) throws Exception {
        String domainNameToCheck = "abcnews.com";
        performWhoisQuery("whois.enom.com", 43, domainNameToCheck);
        performWhoisQuery("whois.internic.net", 43, domainNameToCheck);
    }

    public static void performWhoisQuery(String host, int port, String query) throws Exception {
        System.out.println("**** Performing whois query for '" + query + "' at " + host + ":" + port);

        Socket socket = new Socket(host, port);

        InputStreamReader isr = new InputStreamReader(socket.getInputStream());
        BufferedReader in = new BufferedReader(isr);

        PrintWriter out = new PrintWriter(socket.getOutputStream(), true);
        out.println(query);

        String line = "";
        while ((line = in.readLine()) != null) {
            System.out.println(line);
        }
    }

1 个答案:

答案 0 :(得分:0)

地图容器的样式似乎很好,所以问题可能来自

的高度/宽度
<div id="weathermap"></div>

<div data-role="page" id="display">

例如,如果div#weathermap的高度为200px,那么您在height: 100%;内附加的地图div最后只会是200px。

所以你必须确定这两个div中的哪一个没有占据页面高度(它可能也是身体高度的问题)