2016-06-14 47 views
0

我想把我的谷歌地图初始化工作代码放入流星项目中,并得到两个错误,分别是Unexpected token <initMap is not a function。我给出的HTML文件的代码如下:google maps api 3:如何解决“意外令牌”的错误?

<head> 
    <title>simple</title> 
</head> 

<body> 
    <h1>Welcome to Meteor!</h1> 

    {{> hello}} 
    {{> info}} 
    <script src="main.js"></script> 
    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBNRzOGCsGk5u0VHjDOh_4QyJf4K-Hz5Bw&signed_in=true&libraries=places&callback=initMap" 
    async defer></script> 
</body> 

<template name="hello"> 
    <button>Click Me</button> 
    <p>You've pressed the button {{counter}} times.</p> 
</template> 

<template name="info"> 
    <h2>Learn Meteor!</h2> 
    <ul> 
    <li><a href="https://www.meteor.com/try">Do the Tutorial</a></li> 
    <li><a href="http://guide.meteor.com">Follow the Guide</a></li> 
    <li><a href="https://docs.meteor.com">Read the Docs</a></li> 
    <li><a href="https://forums.meteor.com">Discussions</a></li> 
    </ul> 
</template> 
+0

'Unexpected token <'where?哪一行文件?它在'main.js中吗?'调试器应该告诉你 –

回答

1

使用此包。

您不需要添加main.js,流星会照顾到这一点。

你也可以看到这个样本example

0

你不能像在流星应用中那样添加google maps api。有一个封装,这将有助于你从地图atmospherejs dburles:google-maps

的文档很好的解释集成到应用程序

dburles:google-maps