Google Map未在OSClass中完全加载

时间:2013-03-08 04:24:47

标签: google-maps osclass

我在osclass\oc-content\themes\modern\item.php

中有以下代码
<strong class="share"><a href="#" id="map" rel="nofollow"><?php _e('Map', 'modern'); ?></a></strong>

<strong class="share"><a href="#" id="photo" rel="nofollow"><?php _e('Photo Gallery', 'modern'); ?></a></strong>

<div class="map" style="display:none;">
    <?php osc_run_hook('location'); ?> 
</div>

    <div class="slider-wrapper theme-light image" >
            <div id="slider" class="nivoSlider">                        
            <?php if( osc_images_enabled_at_items() ) { ?>
                <?php if( osc_count_item_resources() > 0 ) { ?>
                    <?php for ( $i = 0; osc_has_item_resources(); $i++ ) { if (osc_resource_for() == 2 ) {  ?>
                        <img src="<?php echo osc_resource_url(); ?>" width="100%" height="240px;" alt="<?php echo osc_item_title(); ?>" title="<?php echo osc_item_title(); ?>" />
                    <?php } } ?>
                <?php } ?>
            <?php } osc_reset_resources();  ?>  
        </div>
    </div>

和JavaScript代码是,

$("#photo").click(function() {      
    $(".image").css("display","block");
    $(".map").css("display","none");
});

$("#map").click(function() {
    $(".map").css("display","block");
    $(".image").css("display","none");
});     

这里的照片装得很好。但是,当我点击#map时,地图会出现以下问题。

enter image description here

如果我在第1张加载地图并将display:none;设置为.image则意味着,地图将会完整且良好地加载。

问题出在哪里?

1 个答案:

答案 0 :(得分:0)

我刚刚测试了3.1版,它正在我的localhost上运行