在React Native Maps标记上显示工具提示

时间:2019-11-20 10:55:23

标签: react-native maps react-native-maps

我想在标记上显示工具提示。现在我的地图就是这样,我也在添加代码

enter image description here

地图代码

    File localFile = new File(localdir,infile.getName());

    BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(localFile));

    byte[] b = new byte[8192];
    int n = 0;


    while(( n = smbIn.read( b )) > 0 ) {

        out.write( b, 0, n );
    }

    out.flush();
    out.close();

    smbIn.close();
    out.close();

    return localFile;

如果这些红色标记我也想显示工具提示,并且我还想添加放大和缩小按钮以及位置图钉按钮,我该怎么做?我正在使用zoomEnabled,但是没有像我们看到的那样显示按钮谷歌地图放大和缩小/

0 个答案:

没有答案