質問編集履歴

1

partialで読み込んでいる箇所も追記

2016/07/25 20:53

投稿

hrc
hrc

スコア55

test CHANGED
File without changes
test CHANGED
@@ -216,6 +216,54 @@
216
216
 
217
217
  ```
218
218
 
219
+
220
+
221
+ 【追記】
222
+
223
+ application.html.slimの中から = if defined?(@temp)で読み込んでいるテンプレートはこちらです。ここに地図関連の情報も載せています。
224
+
225
+
226
+
227
+ ```
228
+
229
+ head
230
+
231
+ meta charset="utf-8"
232
+
233
+ meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"
234
+
235
+ meta name="viewport" content="width=device-width, initial-scale=1.0"
236
+
237
+ title= content_for?(:title) ? yield(:title) : "Vegewel"
238
+
239
+ = csrf_meta_tags
240
+
241
+ = stylesheet_link_tag "application", :media => "all"
242
+
243
+ = favicon_link_tag 'apple-touch-icon-144x144-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '144x144'
244
+
245
+ = favicon_link_tag 'apple-touch-icon-114x114-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '114x114'
246
+
247
+ = favicon_link_tag 'apple-touch-icon-72x72-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '72x72'
248
+
249
+ = favicon_link_tag 'apple-touch-icon-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png'
250
+
251
+ = favicon_link_tag 'favicon.ico', :rel => 'shortcut icon'
252
+
253
+ = javascript_include_tag "application"
254
+
255
+
256
+
257
+ script src="//maps.google.com/maps/api/js?v=3.23&key=AIzaSyCgBL4ep6_BcDS3ffBf9Tz5ZTHaaZ4Y3bg"
258
+
259
+ script src="//cdn.rawgit.com/mahnunchik/markerclustererplus/master/dist/markerclusterer.min.js"
260
+
261
+ script src='//cdn.rawgit.com/printercu/google-maps-utility-library-v3-read-only/master/infobox/src/infobox_packed.js'
262
+
263
+ ```
264
+
265
+
266
+
219
267
  JSの順番なのかわからないのですが、調べてもTurbolinksが悪そうとかは出てくるのですが見当もつきかねるので是非皆さんのお知恵を拝借したいです。
220
268
 
221
269
  どうかよろしくお願いします。