next.js/test/e2e/third-parties/pages/google-maps-embed.js
google-maps-embed.js19 lines349 B
import { GoogleMapsEmbed } from '@next/third-parties/google'

const Page = () => {
  return (
    <div class="container">
      <h1>Google Maps Embed</h1>
      <GoogleMapsEmbed
        apiKey="XYZ"
        height={200}
        width="100%"
        mode="place"
        q="Brooklyn+Bridge,New+York,NY"
      />
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN