我在我的应用程序中使用jframe来显示谷歌地图。
当我想显示位置之间的路线时,我确实喜欢,我使用方向API URL获得方向坐标,如:
“https://maps.googleapis.com/maps/api/directions/json?origin=Kundalahalli,+Bengaluru,+Karnataka&destination=Marathahalli,+Bengaluru,+Karnataka&alternatives=true&key=[API_KEY]”
我在静态地图API上绘制JSON响应,如:
“https://maps.google.com/maps/api/staticmap?&size=640x640&path=geodesic:true|color:0x0000ff|weight:5|12.9709684,77.7142173|12.9709056,77.71226659999999|12.9558971,77.71483429999999|12.956154,77.6939043|12.9568557,77.6975092|12.9569979,77.69752029999999|12.9571073,77.6971808”
我得到的图像有直线,不适合我的应用程序。
我希望输出类似于我们在Google地图中得到的输出。并且要求是这应该在java中实现。
帮助我解决这个问题,提前谢谢。